Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Non-noise words are incorrectly recognised as noise words.

Reply
Thread Tools

Non-noise words are incorrectly recognised as noise words.

 
 
Peter Strĝiman
Guest
Posts: n/a
 
      08-23-2005
Hi.

I have an Sql server 2005 beta2 problem with the full-text index
functionality.

I have a table with a full text index. In the definition of the full-text
index, I have specified the neutral language. The problem domain specifies
that texts can be in arbitrary languages.

create fulltext index on mytable
(
myfield language 0x0
)
...

Then I insert a record containing the word "and" (which in Danish means
duck). When searching for that record

select * from mytable where contains(myfield, 'and')

nothing is returned, and I get the message,"Informational: The full-text
search condition contained noise word(s)."

Apperantly, it uses the noise-word list for english, when I insert records
and search on that field.
I thought that when I specify the language as 0x0, the full-text index
should be language neutral and that would mean that it doesn't filter out
noise words(because those are language specific). Am I mistaken, or is it an
Sql Server 2005 beta2 bug?

Thanks in advance,
Peter Strĝiman


 
Reply With Quote
 
 
 
 
Peter Strĝiman
Guest
Posts: n/a
 
      08-23-2005
Sorry. This was supposed to go to the Sql server group.

"Peter Strĝiman" <> wrote in message
news:%23SlBrX%...
> Hi.
>
> I have an Sql server 2005 beta2 problem with the full-text index
> functionality.
>
> I have a table with a full text index. In the definition of the full-text
> index, I have specified the neutral language. The problem domain specifies
> that texts can be in arbitrary languages.
>
> create fulltext index on mytable
> (
> myfield language 0x0
> )
> ...
>
> Then I insert a record containing the word "and" (which in Danish means
> duck). When searching for that record
>
> select * from mytable where contains(myfield, 'and')
>
> nothing is returned, and I get the message,"Informational: The full-text
> search condition contained noise word(s)."
>
> Apperantly, it uses the noise-word list for english, when I insert records
> and search on that field.
> I thought that when I specify the language as 0x0, the full-text index
> should be language neutral and that would mean that it doesn't filter out
> noise words(because those are language specific). Am I mistaken, or is it
> an Sql Server 2005 beta2 bug?
>
> Thanks in advance,
> Peter Strĝiman
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Words and non-words, according to Microsoft et al Steve B NZ Computing 11 03-21-2008 11:52 PM
Replace stop words (remove words from a string) BerlinBrown Python 6 01-17-2008 02:37 PM
Words Words utab C++ 6 02-16-2006 07:00 PM
replace words with bold words Lasse Edsvik ASP General 9 10-07-2003 01:19 PM
Re: A little bit of help regarding my linked list program required. - "words.c" - "words.c" Richard Heathfield C Programming 7 10-05-2003 02:38 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57