Change an Operator's Availability

Applies to: SQL Server Azure SQL Managed Instance

Important

On Azure SQL Managed Instance, most, but not all SQL Server Agent features are currently supported. See Azure SQL Managed Instance T-SQL differences from SQL Server for details.

This topic describes how to change an operator's schedule for receiving alert notifications in SQL Server by using SQL Server Management Studio or Transact-SQL.

Before You Begin

Security

Permissions

Only members of the sysadmin fixed server role can edit operators.

Using SQL Server Management Studio

To change an operator's availability

  1. In Object Explorer, click the plus sign to expand server that contains the operator that you want to enable or disable.

  2. Click the plus sign to expand SQL Server Agent.

  3. Click the plus sign to expand the Operators folder.

  4. Right-click the operator that you want to enable or disable and select Properties, then click the General tab.

  5. In the operator_nameProperties dialog box, select or clear the Enabled check box.

  6. Click OK.

Using Transact-SQL

To change an operator's availability

  1. In Object Explorer, connect to an instance of Database Engine.

  2. On the Standard bar, click New Query.

  3. Copy and paste the following example into the query window and click Execute.

    -- disables the 'François Ajenstat' operator  
    USE msdb ;  
    GO  
    
    EXEC dbo.sp_update_operator   
        @name = N'François Ajenstat',  
        @enabled = 0;  
    GO  
    

For more information, see sp_update_operator (Transact-SQL).