信息:全文搜索条件包含噪音词

时间:2012-01-06 10:51:01

标签: sql-server

  

可能重复:
  SQL Server Full text Index
  SQL Server stored procedure parameter output

我使用全文索引来搜索存储过程中的成员列表。但它是通过跟随错误,

Informational: The full-text search condition contained noise word(s).

我得到了谷歌的建议,使用以下查询,

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

但是没有结果,也会发生同样的错误。

我还有一个使用停用词的解决方案,但我对此并不了解。

还有一件事是我正在使用远程sql server,因此我无法创建和编辑新的文本文件。

1 个答案:

答案 0 :(得分:1)

您必须添加一些带有变量名称的引号,例如

firstname =“Rajesh” lastname =“Ramesh”

我希望这对你有帮助....