Skip to main content
Solved

Combine two tables into one

  • June 2, 2016
  • 2 replies
  • 1648 views

Forum|alt.badge.img

I want to combine two tables (csv and .xls) into one table and then join to a feature class. The two tables will have the same schema once I process them through a Attribute Manager and then I want to merge them together and write them out to a csv. I don't think the FeatureMerger or Joiner will really work because they need matching values while the records from these two tables are unique. I hope that makes sense and thanks for your help!

Best answer by jdh

If all you want is one output file with the data from both sources, you don't need any sort of Joiner/FeatureMerger.

 

 

You just have the two readers, plus whatever attribute manipulation necessary and connect both streams to the same writer feature type. Note in this case you don't want to use a dynamic writer.
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.

2 replies

jdh
Contributor
Forum|alt.badge.img+40
  • Contributor
  • Best Answer
  • June 2, 2016

If all you want is one output file with the data from both sources, you don't need any sort of Joiner/FeatureMerger.

 

 

You just have the two readers, plus whatever attribute manipulation necessary and connect both streams to the same writer feature type. Note in this case you don't want to use a dynamic writer.

Forum|alt.badge.img
  • Author
  • June 2, 2016

Dude that worked great, thanks so much!