Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
To determine whether the regular Microsoft SQL Server index on the Document table in the Adventure Works database is used to enforce the uniqueness of the full-text key column, run the following statement:
Run this statement:
USE AdventureWorks GO SELECT INDEXPROPERTY ( OBJECT_ID('Production.Document'), 'PK_Document_DocumentID', 'IsFulltextKey' )
This returns a value of 1 if the index is used to enforce uniqueness of the full-text key column, and 0 if it does not.
To find the identifier of the full-text key column in the Document table execute this statement:
USE AdventureWorks; GO SELECT OBJECTPROPERTYEX(OBJECT_ID('Production.Document'), 'TableFulltextKeyColumn'); GO
See Also
Other Resources
FULLTEXTSERVICEPROPERTY (Transact-SQL)
sp_configure (Transact-SQL)
OBJECTPROPERTYEX (Transact-SQL)
sp_fulltext_service (Transact-SQL)
INDEXPROPERTY (Transact-SQL)