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

前端 未结 3 1654
抹茶落季
抹茶落季 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
    
    0 讨论(0)
  • 2021-02-12 17:20

    All I needed to get full-text indexing to work was the...

    CREATE FULLTEXT CATALOG [myFullText] WITH ACCENT_SENSITIVITY = ON

    After that I could run a CREATE FULLTEXT INDEX query or use the Manage FullText Index in MSSQL Management Studio.

    0 讨论(0)
  • 2021-02-12 17:40

    Use sql server management studio.

    Login as admin to your windows account.

    Then select database and right click on database in sql server management studio and select Define Full Text Index and you are guided throughout the process by management studio.

    0 讨论(0)
提交回复
热议问题