Skip to main content
Question

Process feature classes from list

  • December 17, 2018
  • 2 replies
  • 17 views

Forum|alt.badge.img

What is the best way to process SDE feature classes from a .csv file that contains the names of the feature classes to process? SDE contains hundreds of feature classes but I only want to process the feature classes that are named in the .csv file.

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

david_r
Celebrity
  • 8391 replies
  • December 17, 2018

Create a CSV reader to retrieve the feature class names, then send those to a FeatureReader.

In the FeatureReader, link the "Feature types to read" setting to the feature class name from the CSV.


Forum|alt.badge.img
  • Author
  • 34 replies
  • December 17, 2018

Great, that worked. Thank you.