![]() |
|
|
By: Jeremy Kadlec | Read Comments | Print Jeremy is the CTO @ Edgewood Solutions, co-founder of MSSQLTips.com and SQL Server MVP since 2009. Related Tips: More |
|
Problem
With most, if not all organizations, when executing processes during non business hours it is imperative to know if and when the these processes fail. At a minimum, full backups are typically executed off hours, but many organizations execute resource intensive batch processes which are critical to the core business for the subsequent day. With staff members stretched to meet numerous needs, validating that the jobs have executed successfully on a daily basis can be time consuming, but it is often better to know about the failures ahead of time rather than having the users notify IT. The typical solution to determine if a job fails is to notify a SQL Server operator, but SQL Server Agent mail is not always as reliable as needed. As such, in this tip we will provide scripts to determine recent SQL Server Agent Job failures.
Solution
Since SQL Server stores the Job information in a set of tables in the MSDB database, it is possible to query these tables to determine the status of the Jobs. As such, below outlines the Job related tables in the MSDB database:
|
SQL Server Agent Tables | |||
| ID | Purpose | SQL Server 2000 Table | SQL Server 2005 Table |
| 1 | Primary table for job related information | MSDB.dbo.sysjobs | MSDB.dbo.sysjobs |
| 2 | Entry for each step in a specific job | MSDB.dbo.sysjobsteps | MSDB.dbo.sysjobsteps |
| 3 | Schedule(s) for each job | MSDB.dbo.sysjobschedules | MSDB.dbo.sysjobschedules |
| 4 | Local or remote servers where the job executes | MSDB.dbo.sysjobservers | MSDB.dbo.sysjobservers |
| 5 | Historical record of the job's execution | MSDB.dbo.sysjobhistory | MSDB.dbo.sysjobhistory |
| 6 | Current job status, next run date\time, queued date, etc. | Not applicable | MSDB.dbo.sysjobactivity |
| 7 | Historical job step log information for all job steps configured to write to this table | Not applicable | MSDB.dbo.sysjobstepslogs |
SQL Server 2000 and 2005 Code Snippets
|
SQL Server 2000 Code Snippet |
-- Variable Declarations |
|
SQL Server 2005 Code Snippet |
-- Variable Declarations |
Next Steps
| Share: | Share | Tweet |
|
![]() |
|
|
Free SQL Server Learning |
|
privacy | disclaimer | copyright | advertise | about authors | contribute | feedback | giveaways | user groups Some names and products listed are the registered trademarks of their respective owners. Edgewood Solutions LLC | MSSharePointTips.com | MSSQLTips.com |