Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
There are 3 DFT(Data Flow Task) named A, B, C. I have a situation like A and B DFT will execute independently. but the third C DFT will start after completion of any A or B.
Condition:
If A complete first then no need to wait for B or if B complete first then no need to wait for A, just start the execution of C.

I have tried the Precedence but not able to achieve the above last condition.

Sorry if any mistake. I am newbie in SSIS

Thanks in Advance.....
Posted

1 solution

I figure it out.

We have to add the precedence and customize it little bit.
For the DFT_A we have to add the completion precedence constraint. in precedence constraint editor choose Evaluation Operation Expression or Constraint. This will make check that task is complete or condition is satisfied.

Do the same for DFT_B and choose "Multiple constraints" as Logical OR.

This will implement the or condition in two precedence condition.

That it is......
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900