Bypassing a step with DTS but allowing the other steps to continue -
07-19-2006
, 02:42 PM
I set up an activex script to bypass a step under a specific condition:
oPKG.Steps("DTSStep_DTSExecutePackageTask_15").Dis ableStep = True
Assuming the senario listed below, how can Step 3 run if it depends on Step
2 ONLY when Step 2 is run ?
First Step
Step 1 Always runs
On Success of above step runs:
Step 2 Runs Conditionally if other conditions are met
On Success of above step runs
Step 3 Always runs |