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.

 All Forums
 SQL Server 2005 Forums
 SSIS and Import/Export (2005)
 Caaling SSIS task from inside script task

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_Success
End Function

how 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.
Go to Top of Page
   

- Advertisement -