The session can be recreated using the file u_tables.sql (the script is at the bottom of the file) that is located in :
C:\Program Files\Microsoft SQL Server\MSSQL10.SQL2008\MSSQL\Install\
The session can be recreated using the file u_tables.sql (the script is at the bottom of the file) that is located in :
C:\Program Files\Microsoft SQL Server\MSSQL10.SQL2008\MSSQL\Install\
USE msdb GO SELECT ss.schedule_id , J.name, ss.name, J.enabled [Job Enabled ?], ss.enabled [Schedule ENABLED ?] FROM sysjobs J JOIN sysjobschedules s ON J.job_id = s.job_id JOIN sysschedules ss ON s.schedule_id = ss.schedule_id WHERE J.enabled = 0