December 22, 2008 at 11:40 pm
I have restored the msdb backup from production into the test environment. After restoring msdb I disabled all the jobs by executing:
UPDATE msdb.dbo.sysjobs
SET originating_server=@@servername, enabled=0
Still the jobs started on schedule.
Then I disabled all the job schedule by using the below query:
UPDATE msdb.dbo.sysjobschedules
SET enabled=0
Still the jobs started on schedule.
There are no DTS packages that can kick start the jobs.
Please help me resolve this issue.
Thanks in advance.
December 28, 2008 at 12:07 pm
I think your agent cache is not in synch with msdb database. Can you please restart the sql server agent.
December 28, 2008 at 12:37 pm
If you don't want any of the jobs to run, just stop the agent.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply