How to find SQL Agent Jobs without Notification Operator Configured?

We can either use SQL Server Management Studio or use Transact-SQL query to find any SQL Agent jobs that have been setup without notification operator.

The following are the steps to find SQL Agent jobs without notification operator via SQL Server Management Studio:

  1. In Object Explorer, expand SQL Agent, then expand Jobs folder (see below):

  2. Next, right-click any SQL Agent Job and choose Properties and then click Notifications (see below):



  3. This is a good idea only if we have a small number of SQL Agent Jobs on SQL Server. However, most production systems literally contain hundreds of SQL Agent Jobs, and it is quite difficult to find this information like that. In this situation, you might use the following Transact-SQL query, which I’ve written a while ago to find SQL Agent Jobs without notification operator:

    USE [msdb]
    GO
    
    SET NOCOUNT ON;
    
    SELECT 'SQL Agent job(s) without notification operator found:' AS [Message]
    
    SELECT j.[name] AS [JobName]
    FROM [dbo].[sysjobs] j
    LEFT JOIN [dbo].[sysoperators] o ON (j.[notify_email_operator_id] = o.[id])
    WHERE j.[enabled] = 1
    	AND j.[notify_level_email] NOT IN (1, 2, 3)
    GO
    

    I hope you will find this information useful 😉

    Advertisement

2 thoughts on “How to find SQL Agent Jobs without Notification Operator Configured?

  1. I actually needed to see where the notification is checked because we no longer need the agent alerts with the centralized monitoring solution and your code helped get me started, thanks!

    Like

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s