I am running a full-text search for my site using SQL Server 2008 R2 and freetexttable. I am getting this error when a stop word is entered:
Informational: The full-text search condition contained noise word(s).
So I did what everyone said to do and turned on the Transform Noise Words so the stop/noise words are ignored and the query can continue. But this changed nothing:
sp_configure 'show advanced options', 1;
RECONFIGURE;
GO
sp_configure 'transform noise words', 1;
RECONFIGURE;
GO
I still get the same error message. So right now my only option is to turn off the stop list, but that is bad because if someone puts "the" in their search it will return ALL pages because every page pretty much has "the" in it. I want the stop words removed, but SQL Server 2008 R2 is not working for me.
Has anyone actually gotten this to work in 2008 R2? My compatibility level was already 100.
Is there any way for me to get stop words to be ignored and not indexed?