How to ignore noiseXXX.txt files for a specific column in SQL Server 2005?
Posted
by
John MacIntyre
on Stack Overflow
See other posts from Stack Overflow
or by John MacIntyre
Published on 2012-06-21T15:10:32Z
Indexed on
2012/06/21
15:16 UTC
Read the original article
Hit count: 186
I have a product table where the description column is fulltext indexed.
The problem is, users frequently search a single word, which happens to be in the noiseXXX.txt files.
We'd like to keep the noise word functionality enabled, but is there anyway to turn it off just for this one column?
I think you can do this in 2008 with the SET STOPLIST=OFF, but I can't seem to find similar functionality in SQL Server 2005.
© Stack Overflow or respective owner