Here are the steps to enable this
-
Make sure the SQL Server FTS is running
-
Click Start, Programs, Microsfot SQL Server 2005, Configuration Tools, SQL Server Configuration Manager
-
Select SQL Server 2005 Services
-
Find "SQL Server FulltextSearch"
-
Enable/Start the service
-
Go back to SSMS (Management Studio) and open a query window. Execute the following query...
use
[database name]
exec sp_fulltext_database 'enable'
Good luck...