Share via


EventDescriptionKeyword Property

この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションは修正することを検討してください。

The EventDescriptionKeyword property restricts SQL Server Agent alert firing.

構文

object
.EventDescriptionKeyword [=value]

Parts

  • object
    An expression that evaluates to an object in the Applies To list
  • value
    A string to search for in the event message text

Data Type

String

Modifiable

Read/write

Prototype (C/C++)

HRESULT GetEventDescriptionKeyword(SQLDMO_LPBSTR pRetVal);
HRESULT SetEventDescriptionKeyword(SQLDMO_LPCSTR NewValue);
ms132104.note(ja-jp,SQL.90).gifメモ :
SQL Distributed Management Objects (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.

SQL Server Agent performs a case-insensitive search of message text for the word the EventDescriptionKeyword property specifies.

Applies To:

Alert Object