The examples in this scenario demonstrate the full-text indexing tasks that are typically required less often than other administrative tasks.
Determine if the level of resource usage has been assigned to the full-text service and how long the full-text service has to wait after a request for population has been made.
SELECT FulltextServiceProperty ( 'IsFullTextInstalled' )
This returns 1 if the service has been installed, and 0 if it has not.
SELECT FulltextServiceProperty ( 'ResourceUsage' )
This returns a value from 1 (background) through 5 (dedicated).
SELECT FulltextServiceProperty ( 'ConnectTimeout' )
This returns the current time-out value.
sp_fulltext_service 'ConnectTimeout', 90
Determine if the regular SQL mag_id_index index on the magazines table in the pubs database is used to enforce the uniqueness of the full-text key column.
SELECT IndexProperty ( Object_Id('magazines', 'mag_id_index', '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.
SELECT ObjectProperty(Object_Id('books', 'TableFulltextKeyColumn'))