| title | Change an Operator's Availability | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ms.custom | seo-lt-2019 | |||||||||||
| ms.date | 01/19/2017 | |||||||||||
| ms.prod | sql | |||||||||||
| ms.prod_service | sql-tools | |||||||||||
| ms.technology | ssms | |||||||||||
| ms.topic | conceptual | |||||||||||
| helpviewer_keywords |
|
|||||||||||
| ms.assetid | 10d58b92-b67b-47e2-af9c-9f9fd6968bba | |||||||||||
| author | markingmyname | |||||||||||
| ms.author | maghan | |||||||||||
| ms.manager | jroth | |||||||||||
| ms.reviewer | ||||||||||||
| monikerRange | = azuresqldb-mi-current || >= sql-server-2016 || = sqlallproducts-allversions |
[!INCLUDEappliesto-ss-asdbmi-xxxx-xxx-md]
Important
On Azure SQL Database Managed Instance, most, but not all SQL Server Agent features are currently supported. See Azure SQL Database 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 [!INCLUDEssCurrent] by using [!INCLUDEssManStudioFull] or [!INCLUDEtsql].
Only members of the sysadmin fixed server role can edit operators.
-
In Object Explorer, click the plus sign to expand server that contains the operator that you want to enable or disable.
-
Click the plus sign to expand SQL Server Agent.
-
Click the plus sign to expand the Operators folder.
-
Right-click the operator that you want to enable or disable and select Properties, then click the General tab.
-
In the operator_nameProperties dialog box, select or clear the Enabled check box.
-
Click OK.
-
In Object Explorer, connect to an instance of [!INCLUDEssDE].
-
On the Standard bar, click New Query.
-
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).