I have a table that's Full-Text indexed. When I search for a string in a column in the table using CONTAINS I don't get any results, but I do get a result if query for the same text using CHARINDEX.So, this returns 0:select count(*) from productswhere (contains(description, 'XS0377767420'))and (id = 2071075)
and this returns the correct index of the string:select charindex('XS0377767420', description) from productswhere id = 2071075
I have re-run a full population of the full text indexing, but it's still not working. Is there anything else I can try?Also, just to note that I can find other text strings in the column using CONTAINS. It seems to only work for some strings.