I want to have the following query:
SELECT COUNT(*) FROM MyTable WHERE
CONTAINS (MyField, '(429)')
The problem, is that the parenthesis are ignored and it is finding anything with "429". I just want "(429)" found. If I change it to have '"(429)"' that does not help (it still returns items with just "429").