How to find Full-text indexing on database in SQL Server 2008?

后端 未结 3 479
猫巷女王i
猫巷女王i 2020-12-17 09:14

Hi I am looking for a query that is able to find Full text indexing on all tables and columns within a database using SQL Server 2008. Any information or help that can be pr

3条回答
  •  北荒
    北荒 (楼主)
    2020-12-17 10:06

    select distinct
        object_name(fic.[object_id])as table_name,
        [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]
    

提交回复
热议问题