Hi,
Is the following possible?
An FME workspace writes to a table. After the writers are ready I want that process to continue with other transformers and an other writer which must be writing last. I don't want to create 2 workspaces.
Hi,
Is the following possible?
An FME workspace writes to a table. After the writers are ready I want that process to continue with other transformers and an other writer which must be writing last. I don't want to create 2 workspaces.
Look into using multiple FeatureWriter transformers, rather than the "classic" writers. You can chain them together to get the desired workflow.
Use FeatureWriters instead of Writers. These have a summary outputport. Connect a Sampler to the summary outputports, set the sampler to last 1 feature, and use that for following transformers and FeatureReaders.
Hi,
Multiple Featurewriters all connected to a FeartureHolder via Summary seems to work. Thanks for the tips.