How to turn on the FULLTEXT mode on SQL Server 2005

旧城冷巷雨未停 提交于 2020-01-17 03:33:06

问题


I'm currently trying to create FULLTEXT indexes into my database (Microsoft SQL Server 2005).

First I want to create the catalog:

USE [AspDotNetStorefront]
GO
EXEC sp_fulltext_database 'enable'
GO
CREATE FULLTEXT CATALOG searchcatalog 
GO

But that doesn't work, the result is this:

Msg 7609, Level 17, State 100, Line 1
Full-Text Search is not installed, or a full-text component cannot be loaded.

I'm running on Windows XP, SQL Server Express 9.0.4053 and I have SQL Server Management Studio Express (9.0).


回答1:


Full-Text search is only available in the SQL Express Advanced versions, see Features Supported by the Editions of SQL Server. Get 2005 from Microsoft SQL Server 2005 Express Edition with Advanced Services, 2008 from Microsoft SQL Server 2008 Express with Advanced Services



来源:https://stackoverflow.com/questions/1923806/how-to-turn-on-the-fulltext-mode-on-sql-server-2005

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!