all groups > sql server full text search > october 2007 >
You're in the

sql server full text search

group:

Noise Words


Noise Words toddwprice NO[at]SPAM gmail.com
10/2/2007 9:55:45 PM
sql server full text search:
This query returns several rows:

SELECT *
FROM ContainsTable(Article, *, '"Working" AND "Women" AND "Healthy"')

But this one returns none:

SELECT *
FROM ContainsTable(Article, *, '"Working" AND "Women" AND "Healthy"
AND "Are"')


I get the informational 'The full-text search condition contained
noise word(s).' on the second query, so the word "Are" must be in the
noise words file.

My question is this: if "Are" is a noise word, why does it affect my
query results? Shouldn't I get the exact same number of results for
each query?
Re: Noise Words Hilary Cotter
10/2/2007 11:10:47 PM
Not in SQL 2000. It bombs on this message. You will have to trim this noise
word out from your query or remove it from your noise word list.

--
RelevantNoise.com - dedicated to mining blogs for business intelligence.

Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html

Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
[quoted text, click to view]

Re: Noise Words Hilary Cotter
10/3/2007 12:22:26 PM
if you set transform noise words to true they are.

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

--
RelevantNoise.com - dedicated to mining blogs for business intelligence.

Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html

Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
[quoted text, click to view]

Re: Noise Words toddwprice NO[at]SPAM gmail.com
10/3/2007 3:55:49 PM
Sorry - to clarify, it is SQL 2005. My understanding is that the
noise words should be removed automatically.

Anyone?

[quoted text, click to view]

AddThis Social Bookmark Button