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.
Page 1 / 1
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.
Great, that worked. Thank you.