Monday, August 23, 2010

Could not find stored procedure 'sp_stop_job'

Deployed my SSIS package to QA and the job threw an error
Could not find stored procedure 'sp_stop_job'.
Turns out I had made the call to sp_stop_job in the current connection that was pointing to the logging database.

Just had to modify the call to look like "msdb.dbo.sp_stop_job"

1 comment:

Anonymous said...

Thank you!