How to Enable Full-Text Index on Sql Server 2008 Table

Posted by michaeldelorenzo on Stack Overflow See other posts from Stack Overflow or by michaeldelorenzo
Published on 2009-04-17T17:52:43Z Indexed on 2010/03/19 14:41 UTC
Read the original article Hit count: 214

Not sure what's happening with this, but here's my question. I have a Sql Server 2008 database that I need to be able to do full-text indexing/searching but when I try to setup my indices on the table, I get the following:

alt text

I've tried running this stored procedure on my database and it's successful:

EXEC sp_fulltext_database @action = 'enable'

But I still get the above window and my full-text searches don't return any results when they should.

What am I missing?

© Stack Overflow or respective owner

Related posts about sql-server

Related posts about full-text-search