views:

132

answers:

2

I am not a big fan of Full Text search with MSSQL(not sure if there is another) does anyone know of any other options to this?

+6  A: 

Lucene.Net from Apache is worth a look.

After your raw text data has been indexed, you can use Lucene.Net’s API to search this data. Indexing and searching via Lucene.Net’s APIs is easy and yet very powerful.

Demo and Breakdown

cgreeno
+1! I'm using Lucene.NET to index data in a legacy database and it's working very, very well. Didn't take much to get it working, either.
David Brown
A: 

There are a few replacements out there. I can't think of the names of any at the moment.

However major improvements were made with Full Text Search in SQL Server 2008. You may want to look into an upgrade to get the speed improvements.

mrdenny