SQL Server Developer Center > SQL Server Forums > SQL Server Search > FullText Not Searching On Phrase With Space Correctly
Ask a questionAsk a question
 

AnswerFullText Not Searching On Phrase With Space Correctly

  • Friday, October 02, 2009 7:51 PMAbercrombie07 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Has Code
    I have a fulltext query that uses the containstable function. The phrase being searched is "over speed". I'm using a case insensitive sort. The result sets are coming back with the word speed but not the word over. The message return states:
    The full-text search condition contained noise word(s).
    
    The phrase is not negiotable as I am specifically looking for the phrase "over speed". Is over a noise word?
    DJ Baby Anne's Biggest Fan................

Answers

  • Friday, October 09, 2009 7:42 PMAbercrombie07 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    I actually ended up setting the Full-Text Index StopList to off  and the query works correctly.
    DJ Baby Anne's Biggest Fan................

All Replies

  • Saturday, October 03, 2009 11:23 AMHilary CotterMVPUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Yes, it is. You will need to remove it from your noise word list and rebuild your catalog to be able to search on it.
    looking for a book on SQL Server replication? http://www.nwsu.com/0974973602.html looking for a book on SQL Server 2008 Administration? http://www.amazon.com/Microsoft-Server-2008-Management-Administration/dp/067233044X looking for a book on SQL Server 2008 Full-Text Search? http://www.amazon.com/Pro-Full-Text-Search-Server-2008/dp/1430215941
  • Saturday, October 03, 2009 1:16 PMAbercrombie07 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Has Code

    The scary thing is that I don't see any noise files. I've run the 

    select * from sys.fulltext_stopwords

    and

    select * from sys.fulltext_stoplists

    statements and they both returned no rows. There's some mention of a resource database but I can't attach to it. I don't want to mess this up but if I create a StopList does it inherit all the stopwords from the Resource database? I'm running SQL 2008.


    DJ Baby Anne's Biggest Fan................
    • Edited byAbercrombie07 Saturday, October 03, 2009 1:44 PMWrong Version
    •  
  • Tuesday, October 06, 2009 12:09 PMHilary CotterMVPUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    The system one does not show up in these queries. You will need to create a custom one and then remove over from it.
    looking for a book on SQL Server replication? http://www.nwsu.com/0974973602.html looking for a book on SQL Server 2008 Administration? http://www.amazon.com/Microsoft-Server-2008-Management-Administration/dp/067233044X looking for a book on SQL Server 2008 Full-Text Search? http://www.amazon.com/Pro-Full-Text-Search-Server-2008/dp/1430215941
  • Friday, October 09, 2009 7:42 PMAbercrombie07 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    I actually ended up setting the Full-Text Index StopList to off  and the query works correctly.
    DJ Baby Anne's Biggest Fan................