Hi I have a large number of file geodatabases with one feature class in each.
I would like to merge all the feature classes and save in one single file geodatabase.
Any suggestions what's the best way to achieve this?
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.
Hi there - just add a Geodatabase Reader (ArcObjects if you have ESRI installed and API reader if not). Then browse to multiple GDB files at once like this:
...or go for c:\\temp\\**\\*.gdb or similar. Then make sure 'Single Merged Feature Type' is tagged.
Then add an AttributeExposer to your feature type and expose fme_basename (for the filename) and fme_feature_type (for the featureclass name) so that you know what came from where. You'll then be able to conflate the content to a single target GDB with a GDB writer.
Hi there - just add a Geodatabase Reader (ArcObjects if you have ESRI installed and API reader if not). Then browse to multiple GDB files at once like this:
...or go for c:\\temp\\**\\*.gdb or similar. Then make sure 'Single Merged Feature Type' is tagged.
Then add an AttributeExposer to your feature type and expose fme_basename (for the filename) and fme_feature_type (for the featureclass name) so that you know what came from where. You'll then be able to conflate the content to a single target GDB with a GDB writer.