The EventDescriptionKeyword property restricts SQL Server Agent alert firing.
object.EventDescriptionKeyword [= value]
object
Expression that evaluates to an object in the Applies To list
value
String to search for in the event message text
String
Read/write
HRESULT GetEventDescriptionKeyword(SQLDMO_LPBSTR pRetVal);
HRESULT SetEventDescriptionKeyword(SQLDMO_LPCSTR NewValue);
Note SQL-DMO strings are always returned as OLE BSTR objects. A C/C++ application obtains a reference to the string. The application must release the reference using SysFreeString.
A SQL Server Agent alert is raised in response to some condition occurring on an instance of Microsoft® SQL Server™. An alert based on message number or severity can be constrained by indicating that a word or phrase must exist in the message text generated by an instance of SQL Server in response to the condition. The EventDescriptionKeyword property represents this constraining text for a SQL Server Agent alert.
The SQL Server Agent performs a case-insensitive search of message text for the word specified by the EventDescriptionKeyword property.