Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
karanjv
Starting Member
3 Posts |
Posted - 2008-08-27 : 02:23:59
|
Am doing dts to ssis conversion .... in dts i used to call another task from inside the activex script . '**********************************************************************' Visual Basic ActiveX Script'************************************************************************Function Main() SET PackObj = DTSGlobalVariables.Parent SET ChildObj = PackObj.Steps("DTSStep_DTSActiveScriptTask_1") ChildObj.Executionstatus =DTSStepExecStat_Waiting Main = DTSTaskExecResult_SuccessEnd Functionhow do i do the same in SSIS ???? |
|
rgombina
Constraint Violating Yak Guru
319 Posts |
Posted - 2008-08-27 : 07:25:02
|
Use precedence constraint instead. |
 |
|
|
|
|