| title | Delete an Alert | Microsoft Docs | |||||||
|---|---|---|---|---|---|---|---|---|
| ms.custom | ||||||||
| ms.date | 01/19/2017 | |||||||
| ms.prod | sql | |||||||
| ms.prod_service | sql-tools | |||||||
| ms.reviewer | ||||||||
| ms.technology | ssms | |||||||
| ms.topic | conceptual | |||||||
| helpviewer_keywords |
|
|||||||
| ms.assetid | c982b208-e2d1-4d34-8cee-940b9baf6586 | |||||||
| author | stevestein | |||||||
| ms.author | sstein | |||||||
| manager | craigg | |||||||
| 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 delete [!INCLUDEmsCoName] [!INCLUDEssNoVersion] Agent alerts in [!INCLUDEssCurrent] by using [!INCLUDEssManStudioFull] or [!INCLUDEtsql].
In This Topic
-
Before you begin:
-
To delete an alert, using:
Removing an alert also removes any notifications associated with the alert.
By default, only members of the sysadmin fixed server role can delete alerts.
-
In Object Explorer, click the plus sign to expand the server that contains the SQL Server Agent alert that you want to delete.
-
Click the plus sign to expand SQL Server Agent.
-
Click the plus sign to expand the Alerts folder.
-
Right-click the alert you want to delete and select Delete.
-
In the Delete Object dialog box, confirm that the correct alert is selected and 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.
-- deletes the SQL Server Agent alert called 'Test Alert.' USE msdb ; GO EXEC dbo.sp_delete_alert @name = N'Test Alert' ; GO
For more information, see sp_delete_alert (Transact-SQL).