IsFullTextKey Property
この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションは修正することを検討してください。
The IsFullTextKey property identifies the index used by Microsoft Search to support row identification.
構文
object
.IsFullTextKey
Parts
- object
An expression that evaluates to an object in the Applies To list
Data Type
Boolean
Modifiable
Read-only
Prototype (C/C++)
HRESULT GetIsFullTextKey(LPBOOL pRetVal);
解説
If TRUE, the referenced index is used by Microsoft Search for row identification.
If FALSE, the referenced index is not used by Microsoft Search.
Microsoft Search requires that a single column identify rows participating in an index supporting full-text query. The column designated must contain unique, nonnull values and must participate in a PRIMARY KEY or UNIQUE key constraint. A table that contains a PRIMARY KEY constraint does not require a separate unique index for Microsoft Search configuration.
Use UniqueIndexForFullText to configure Microsoft Search full-text index key column use.
Applies To:
参照
関連項目
UniqueIndexForFullText Property