vote up 0 vote down star

I created a full-text index on a text column and subsequent contains queries return results that don't include the search term. An example query is:

SELECT TOP 10 serial_no,writer_id,myField,assignment_type,subdate,title
FROM writing WHERE contains(myField,'"take it once"');
flag

49% accept rate

1 Answer

vote up 0 vote down

Does this happen after you update/rebuild the full text index? http://technet.microsoft.com/en-us/library/bb326034.aspx

link|flag
Yes.. One of the results contains the query string and the rest don't. – Caveatrob Apr 8 at 19:47
It looks like since your query contains at least one noise word (it) this behavior can be expected: dbtalk.net/microsoft-public-sqlserver-fulltext/… – matt.mercieca Apr 8 at 20:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.