Given this code, I'm getting back no results:
SELECT TOP 10 * FROM MyTable WHERE CONTAINS(TextColumn, '"W"')
Things I've checked:
EDIT: I was looking for a stop lists, not a stop word, associated with the index.
The answer is to make sure you have an empty stop list associated with the index. It isn't enough to simply have no stop list, as it would just use the default stop list.
CREATE FULLTEXT STOPLIST [EmptyStopList] ;
GO
ALTER FULLTEXT INDEX ON MyTable SET STOPLIST [EmptyStopList]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With