List which columns have a full-text index in SQL Server 2005

Andreas Ågren picture Andreas Ågren · Jun 4, 2009 · Viewed 8.1k times · Source

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

Answer

Andreas Ågren picture Andreas Ågren · Jun 4, 2009
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]