Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you check if full text change tracking is on?

Status
Not open for further replies.

vnad

MIS
Nov 22, 2002
91
US
I have a table and I want to see if full text change tracking is enabled? Where do you check this?

Also, how would you check to see if auto propagation for the background update index is on as well?
 
Found it

SELECT OBJECTPROPERTY (<object_id>,'TableFulltextChangeTrackingOn')
SELECT OBJECTPROPERTY (<object_id>,'TableFulltextBackgroundUpdateIndexOn')

You can find the object ids from the sysobjects table. If the query returns a 1, that means it is on, a 0 means it is off.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top