Skip to content

Latest commit

 

History

History
84 lines (67 loc) · 3.23 KB

File metadata and controls

84 lines (67 loc) · 3.23 KB
title sp_delete_notification (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/14/2017
ms.prod sql-non-specified
ms.reviewer
ms.suite
ms.technology
database-engine
ms.tgt_pltfrm
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
caps.latest.revision 21
author JennieHubbard
ms.author jhubbard
manager jhubbard

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)