Hold data path in Lookup SSIS
August 21st, 2015 1:13am

Hi Vipin

I'm not sure that it is possible, you could try add a asynchronous transformation such as a sort to your "task 3" pipeline, this will force the process to hold of on continuing until the last record has arrived. this is not a great solution though as it will consume more of you buffers making everything slower.

Instead what you might try is to write those records to a staging table and then copying them into the main table with an execute SQL task or data flow task once task 1 has completed.

 

Free Windows Admin Tool Kit Click here and download it now
August 21st, 2015 2:12am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics
Hi ,

In my SSIS Package I am loading data from source to destination.
I am using lookup to get the matching and not matching records.due to identity on itmkey i want to load matching record first then non matching records.
can we hold the data path under DFT.
Kindly find the attachment to understand the scenario.