sp_delete_alert (Transact-SQL)
Removes an alert.
Syntax
sp_delete_alert [ @name= ] 'name'
Arguments
- [ @name= ] 'name'
The name of the alert. name is sysname, with no default.
Return Code Values
0 (success) or 1 (failure)
Result Sets
None
Remarks
Removing an alert also removes any notifications associated with the alert.
Permissions
Only members of the sysadmin fixed server role can execute this procedure.
Examples
The following example removes an alert named Test Alert.
USE msdb ;
GO
EXEC dbo.sp_delete_alert
@name = N'Test Alert' ;
GO