vote up 0 vote down star

How do I list all tables / columns in my database that have a full-text index?

flag

1 Answer

vote up 1 vote down check
select distinct
    object_name(fic.[object_id]) table_name,
    [name] column_name
from
    sys.fulltext_index_columns fic
    inner join sys.columns c
    	on c.[object_id] = fic.[object_id]
    	and c.[column_id] = fic.[column_id]
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.