Hi,
I am using MsSQL server 2008, I am using CONTAINSTABLE with the search term "can", but the search query is not returning anything thought there are no stoplists attached to that catalog.
SELECT DISTINCT c.ID FROM City c INNER JOIN CONTAINSTABLE(City, (Name), '"can"') AS city_tbl1 ON city_tbl1.[KEY] = c.ID
To make sure that this kinda exists I ran this query
update City SET Name = 'can' WHERE ID = 34
no results where returned.
Please help.
Thanks in advance --Z