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