I know how to enable them on my full text indexed table, but I don't know how to check if they are already enabled using an SQL command.
Can anyone shed some light on this?
I know how to enable them on my full text indexed table, but I don't know how to check if they are already enabled using an SQL command.
Can anyone shed some light on this?
Most of the fulltext-properties of a table can be queried by using the sys.fulltext_indexes dmv. In this case, stoplist_id should have the information you are looking for.
you could try inserting a document containing only stop words, and then query it (pseudoquery: id=xxx AND text contains "the") - if you get a result, stopwords are being indexed (no stoplist). Hacky, but it will work.