Click here to Skip to main content
15,889,315 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
i have installed sqlserver 2008.
But in that full text searching is not enabled.
When i executed "select fulltextserviceproperty('isfulltextinstalled')" result was 0.
I don't want to lose my this instance. what should i do to enable this service.??
I am working on windows7.
Thanks in advance..:)
Posted
Updated 26-Jun-12 1:22am
v2
Comments
[no name] 26-Jun-12 7:47am    
And the reason that you do not rerun the installation and add that feature is...?

1 solution

To enable a table for full-text indexing

1. Expand the server group, expand Databases, expand User Databases, and expand the database that contains the table you want to enable for full-text indexing.

2. Right-click the table that you want to enable for full-text indexing.

3. Select Full-Text index, and then click Enable Full-Text indexing.

Ref.: http://msdn.microsoft.com/en-us/library/ms142536(v=sql.90).aspx[^]


or else try this:
SQL
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<
 
Share this answer
 
Comments
BalaThakur 26-Jun-12 7:43am    
Yes i did it. But Giving error like
error: Full-Text Search is not installed, or a full-text component cannot be loaded.
Prasad_Kulkarni 26-Jun-12 7:59am    
Then you MUST re-install SQL.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900