DTS: Execute Process Task & Parameters

  • You can also do the below instead of using dynamic property.

    1. Create a ActiveX script before the execute process task

    2. Use the below code to change the parameter

     Dim oPackage

     Dim oCustomTask

     Set oPackage = DTSGlobalVariables.Parent

     

     Set oCustomTask = oPackage.Tasks("Execute Task Name").CustomTask

     oCustomTask.ProcessCommandLine  = "Command" + " My Param"

     

    3. On sucess of Activex script, go to the execute process task.

  • Hi,

    I am using SQL Server 2008/2005. I would like to pass argument value in ExecuteProcessTask through the variable. How Can i achieve it?

    Thanks & Regards,

    K. K. Jain

Viewing 2 posts - 16 through 16 (of 16 total)

You must be logged in to reply to this topic. Login to reply