Notatka
Dostęp do tej strony wymaga autoryzacji. Może spróbować zalogować się lub zmienić katalogi.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
Removes an alert.
Transact-SQL Syntax Conventions
Składnia
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
Uwagi
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