Skip to content

Latest commit

 

History

History
80 lines (63 loc) · 3.19 KB

File metadata and controls

80 lines (63 loc) · 3.19 KB
title sp_delete_notification (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/14/2017
ms.prod sql
ms.prod_service database-engine
ms.reviewer
ms.technology system-objects
ms.topic language-reference
f1_keywords
sp_delete_notification_TSQL
sp_delete_notification
dev_langs
TSQL
helpviewer_keywords
sp_delete_notification
ms.assetid b55d3898-596d-47a5-a4f0-d65dc736223b
author stevestein
ms.author sstein

sp_delete_notification (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]

Removes a [!INCLUDEssNoVersion] Agent notification definition for a specific alert and operator.

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
sp_delete_notification  
     [ @alert_name = ] 'alert' ,   
     [ @operator_name = ] 'operator'   

Arguments

[ @alert_name = ] 'alert' The name of the alert. alert is sysname, with no default.

[ @operator_name = ] 'operator' The name of the operator. operator is sysname, with no default.

Return Code Values

0 (success) or 1 (failure)

Result Sets

None

Remarks

Removing a notification removes only the notification; the alert and the operator are left intact.

Permissions

To run this stored procedure, users must be granted the sysadmin fixed server role.

Examples

The following example removes the notification sent to operator François Ajenstat when alert Test Alert occurs.

USE msdb ;  
GO  
  
EXEC dbo.sp_delete_notification  
    @alert_name = 'Test Alert',  
    @operator_name = 'François Ajenstat' ;  
GO  

See Also

sp_add_alert (Transact-SQL)
sp_add_notification (Transact-SQL)
sp_add_operator (Transact-SQL)
sp_delete_alert (Transact-SQL)
sp_help_alert (Transact-SQL)
sp_help_notification (Transact-SQL)
sp_help_operator (Transact-SQL)
sp_update_notification (Transact-SQL)
System Stored Procedures (Transact-SQL)