I'm trying to write an SSIS package with 3 important tasks. Task 1 queries from a couple of joined tables.
Task 2 queries from another couple of joined tables.
Task 3 joins results from Task 1 and Task 2 and write the results into a staging table.
My option at the moment is to use view for each query in Tasks 1 & 2, join both views and use it as source for Task 3.
What's the best option without using view since I find it so slow?
thanks
Task 2 queries from another couple of joined tables.
Task 3 joins results from Task 1 and Task 2 and write the results into a staging table.
My option at the moment is to use view for each query in Tasks 1 & 2, join both views and use it as source for Task 3.
What's the best option without using view since I find it so slow?
thanks