I'm have a workspace whereby I get constantly new and updated data from the client.
Based on what the data is I'd like it to fan out to it's correct GDB.
The GDB's from the client come with all the data in one.
E.g.
ENV_Badgers
ENV_GCNs
HIS_Monuments
PRP_LandAcess
These need to be moved into their corresponding GDB's
E.g.
REF_ENV
REF_HIS
REF_PRP
My current Method is just to move them based on GDB, and I also use the Insert, Create If Needed function, then the Insert, Truncate Existing.
I've found if I used Drop and Create the workbench will break if there is new data (nothing to 'Drop'), same stands for Truncate Existing.
So two problems:
Fanout data into existing GDB based on name
Import new and updated data without having to run twice for Create and Truncate.