How to turn on the FULLTEXT mode on SQL Server 200

2019-08-17 18:48发布

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条回答
女痞
2楼-- · 2019-08-17 18:59
登录 后发表回答