Skip to main content
Question

FeatureReader from file gdb to CSV

  • July 16, 2018
  • 2 replies
  • 29 views

Forum|alt.badge.img

Hello, I hope to back up all the data from my reader feature class into a CSV file, in case I would need to look up the data in the future. I used the FeatureReader with the parameter as shown in the picture, but the result CSV has each of my reader record increased exponentially. Not sure what happen in my case..

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

andreaatsafe
Safer
Forum|alt.badge.img+14

Hi @koala18,

It looks like the Reader Feature Type and the FeatureReader are reading the same feature class? If so, you may not need the FeatureReader, and you can just connect the Reader directly to the CSV writer.

 

- Andrea

Forum|alt.badge.img
  • Author
  • July 16, 2018

Hi @koala18,

It looks like the Reader Feature Type and the FeatureReader are reading the same feature class? If so, you may not need the FeatureReader, and you can just connect the Reader directly to the CSV writer.

 

- Andrea
Hi Andrea, thanks for the comments. That is exactly what I need.