Skip to main content
Solved

How can a Reader starts after Writer is finish

  • February 21, 2017
  • 5 replies
  • 228 views

jtn40764
Participant
Forum|alt.badge.img

I have a question. I make a Projekt in FME Desktop and I want that a one of the Datareaders starts after a writer has finished his work. Is this possible? I need this, because the writer updated a table from the Reader

Best answer by jdh

In that scenario you probably want to use the featureWriter/ featureReader transformers

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

5 replies

jdh
Contributor
Forum|alt.badge.img+40
  • Contributor
  • Best Answer
  • February 21, 2017

In that scenario you probably want to use the featureWriter/ featureReader transformers


ebygomm
Influencer
Forum|alt.badge.img+46
  • Influencer
  • February 21, 2017

In that scenario you probably want to use the featureWriter/ featureReader transformers

You will need to consider that sometimes, a featureWriter can report as finished whilst still writing to a file/database.

 

 


itay
Supporter
Forum|alt.badge.img+18
  • Supporter
  • February 22, 2017
You will need to consider that sometimes, a featureWriter can report as finished whilst still writing to a file/database.

 

 

I would use the exiting summary feature to verify via sql that all is written before continuing and reading.

ebygomm
Influencer
Forum|alt.badge.img+46
  • Influencer
  • February 22, 2017
I would use the exiting summary feature to verify via sql that all is written before continuing and reading.
The exiting summary can be written prior to all the features actually being written, particularly if writing to something like Oracle. Just something to be aware of, I always use an sqlexecutor to check the rowcount and only continue the workspace if this matches the written features in the exit summary

 

 


jtn40764
Participant
Forum|alt.badge.img
  • Author
  • Participant
  • February 22, 2017

Thank you for the help. I will add a sqlexecutor to check the oracle db.