I'm having quite a bit of difficulty finding a good solution for this:
Let's say I have a table of "Company", with a column called "Name". I have a full-text catalog on this column. If a user searched for "Very Good Company", my query would be:
SELECT
*
FROM
Company
WHERE
CONTAINS(Name, '"Very" AND "Good" AND "Company"')
The problem is in this example, the word "Very" shows up in the standard list of stopwords:
SELECT
ssw.*
FROM
sys.fulltext_system_stopwords ssw
WHERE
ssw.language_id = 1033;
Resulting in the query returning with no rows, even though there is a row with the name "Very Good Company".
My question is, how would I go about turning the stopwords off for my query? Or how would I go about removing them entirely?
Or is there another way I should be going about this search?