|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Friday, March 01, 2013 11:16 PM
Points: 5,
Visits: 78
|
|
Dear Expert, i can't find some jobs in SQL SERVER AGENT->JOBS ->JOB ACTIVITY MONITOR. but job exists in the system. and performed successfully.
when i run 'select * from sysjobs_view order by name' or 'select * from msdb.dbo.sysjobs order by name' it shows all jobs. but in JOB ACTIVITY MONITOR panel can't show all jobs. i have total 127 jobs. but JOB ACTIVITY MONITOR shows only 117 jobs. 10 jobs doesn't show.
my current server version is 2008, previously i run SQL 2000 version. two month before i upgraded my server from 2000 to 2008. system runs ok. is any issue causes by server upgradation?
please show me the way..
regards
Neaz
|
|
|
|
|
SSChampion
        
Group: General Forum Members
Last Login: Today @ 3:22 AM
Points: 13,382,
Visits: 25,175
|
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Friday, March 01, 2013 11:16 PM
Points: 5,
Visits: 78
|
|
dear Grant Fritchey, thank you 4 your prompt reply. i found the issue what i mention in my query. when my server was 2000 and i was creating jobs and define a category which ID was 4. but after upgrading to 2012, there is not any category ID of 4. that's way in JOB ACTIVITY MONITOR can't retrieve those jobs name which category ID was 4.
solution...
' '; ,' ' USE msdb GO SELECT * from dbo.syscategories ORDER BY category_id ASC GO
in 2000, category_id = 4 exists but in 2008, category_id = 4 doesn't exist.
just i updated dbo.sysjobs table
USE msdb GO -- SELECT * from dbo.sysjobs GO UPDATE dbo.sysjobs SET category_id = 10 WHERE job_id = '<JOB_ID>' AND category_id = 4 GO
thanks and regards, Neaz imneaz@yahoo.com
|
|
|
|