Skip to content Skip to sidebar Skip to footer

Sql Full-text-search Returns No Results When Any Noise Words Are In Search String

I have an asp.net web page used to search for company names in our database using FTS. They enter the company name in a search box and submit. First I trim any leading or trailin

Solution 1:

Try using the transform noise words option as described here: http://technet.microsoft.com/en-us/library/ms187914(SQL.90).aspx

sp_configure 'show advanced options', 1
RECONFIGURE
GO
sp_configure 'transform noise words', 1
RECONFIGURE
GO

Post a Comment for "Sql Full-text-search Returns No Results When Any Noise Words Are In Search String"