Sep 26, 2005 #1 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?
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?
Sep 26, 2005 Thread starter #2 vnad MIS Nov 22, 2002 91 US 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. Upvote 0 Downvote
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.