Share via


ListAvailableUniqueIndexesForFullText Method

Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 말고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.

The ListAvailableUniqueIndexesForFullText method returns a NameList object that enumerates those indexes defined on a table capable of supporting Microsoft Search full-text indexing.

구문

object
.ListAvailableUniqueIndexesForFullText(
)
as
NameList

Parts

  • object
    Expression that evaluates to an object in the Applies To list.

Prototype (C/C++)

HRESULT ListAvailableUniqueIndexesForFullText(
LPSQLDMONAMELIST* ppUniqueIndexNames);

Returns

A NameList object that enumerates Microsoft SQL Server indexes.

주의

To support a full-text index on a column, Microsoft Search requires a unique constraint defined on the table that contains the column. The constraint must be either UNIQUE or PRIMARY KEY, but must be defined on a single column.

The ListAvailableUniqueIndexesForFullText method identifies indexes supporting constraints that can provide a unique value for Microsoft Search indexing.

Applies To:

Table Object