Getting into DTS pretty heavy now and I need the flexiblility to execute a DTS package from my stored procedures.
Ultimately I will run the DTS by running a stored proc from ASP.
I've reviewed all of the DTS and stored proc related posts, but am a little confused.....
xp_cmdshell...dtsrun is command line and isn't available inside a stored proc...right?
So I figure I should use sp_start_job to run the DTS. The package is title 'Export_Data' and it is a local package on my SQL Server under Data Transformation Services.
My stored procedure inside my production database reads like this.
CREATE PROCEDURE DTS_SP_TEST AS
Running the stored proc illicits this error message
Server: Msg 2812, Level 16, State 62, Line 3
Could not find stored procedure 'sp_start_job'.
but if I try to execute the sp_start_job directly, Iget this error
Server: Msg 14262, Level 16, State 1, Procedure sp_verify_job_identifiers, Line 61
The specified @job_name ('Export_Data') does not exist.
Am I missing something as to where my package is saved or something in the syntax of the identifiying the job?
Any help would be appreciated.
Ultimately I will run the DTS by running a stored proc from ASP.
I've reviewed all of the DTS and stored proc related posts, but am a little confused.....
xp_cmdshell...dtsrun is command line and isn't available inside a stored proc...right?
So I figure I should use sp_start_job to run the DTS. The package is title 'Export_Data' and it is a local package on my SQL Server under Data Transformation Services.
My stored procedure inside my production database reads like this.
CREATE PROCEDURE DTS_SP_TEST AS
Code:
exec sp_start_job @job_name = 'Export_Data', @job_id = '{EXXXX-CC3A-4XXX-B9F1-08A8C3E4DDE1}'
Running the stored proc illicits this error message
Server: Msg 2812, Level 16, State 62, Line 3
Could not find stored procedure 'sp_start_job'.
but if I try to execute the sp_start_job directly, Iget this error
Server: Msg 14262, Level 16, State 1, Procedure sp_verify_job_identifiers, Line 61
The specified @job_name ('Export_Data') does not exist.
Am I missing something as to where my package is saved or something in the syntax of the identifiying the job?
Any help would be appreciated.