How to enable Full-text Indexing in SQL Server 2005 Express?

前端 未结 3 1663
抹茶落季
抹茶落季 2021-02-12 17:00

I am trying to enable Full-text indexing in SQL Server 2005 Express. I am running this on my laptop with Vista Ultimate.

I understand that the standard version of SQL Se

3条回答
  •  忘掉有多难
    2021-02-12 17:20

    sp_fulltext_database 'enable'
    
    CREATE FULLTEXT CATALOG [myFullText]
    WITH ACCENT_SENSITIVITY = ON
    
    CREATE FULLTEXT INDEX ON [dbo].[tblName] KEY INDEX [PK_something] ON [myFullText] WITH CHANGE_TRACKING AUTO
    ALTER FULLTEXT INDEX ON [dbo].[otherTable] ADD ([Text])
    ALTER FULLTEXT INDEX ON [dbo].[teyOtherTable] ENABLE
    

提交回复
热议问题