|
|
Question : DTS and Stored Procedure passing parameters
|
|
Hi Experts,
I have a DTS package (btw, using SQL 2000) stored in Local Package. I need to call this package from a stored procedure and on top of that, in my sp, I have a parameter I need to pass as a global variable to the package. Can this be done? Thanks.
Marc
|
Answer : DTS and Stored Procedure passing parameters
|
|
1) exec master..xp_cmdshell 'DTSRun /S (local) /U sa /P /N myPackageName', NO_OUTPUT
or
2) create a job to run DTS, then exex sp_start_job @job_name='job_name'
|
|
|
|
|