Alert.UpdateNotification Method (String, NotifyMethods)

 

Applies To: SQL Server 2016 Preview

Changes the notification method associated with an operator for the alert.

Namespace:   Microsoft.SqlServer.Management.Smo.Agent
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

public void UpdateNotification(
    string operatorName,
    NotifyMethods notifymethod
)
public:
void UpdateNotification(
    String^ operatorName,
    NotifyMethods notifymethod
)
member UpdateNotification : 
        operatorName:string *
        notifymethod:NotifyMethods -> unit
Public Sub UpdateNotification (
    operatorName As String,
    notifymethod As NotifyMethods
)

Parameters

Remarks

The AddNotification method associates operators with alerts. Designated operators receive notification messages when an event raising an alert occurs. When an alert is raised, notification can be sent using e-mail, network pop-up message, or pager. The AddNotification method allows specification of one or more notification mechanisms when operators are assigned notification for an alert.

The RemoveNotification method removes all operator notification mechanisms for an alert. Use the UpdateNotification method to alter the notification mechanism without dropping the association between an alert and the operator.

Examples

Legacy Code Example

Scheduling Automatic Administrative Tasks in SQL Server Agent

See Also

Alert Class
Microsoft.SqlServer.Management.Smo.Agent Namespace
Automated Administration Tasks (SQL Server Agent)
sp_update_notification (Transact-SQL)

Return to top