Reputation: 130
I'm trying to speed up my ETL time by running the same package in parallel but I'm having issues finding a good way to save the data to destination.
SETUP:
GOAL:
WHAT I HAVE DONE SO FAR:
StagingTable_'Month'
The idea was to be able to create each month in parallel and then switch each partition in all at once. Instead of doing it in bulks because of memory capacity.
Anyone have any ideas?
Upvotes: 1
Views: 1208
Reputation: 1594
Create a user variable within a container to store the destination table name then use an expression in your destination to use this variable instead of the table name itself.
Upvotes: 1