I have an SQL Server 2008 Database with a Full Text Index set to one table column used for search.
When trying to perform a query against the table using the CONTAINS clause with the following criteria: "003", it ignores the leading zeros and returns all rows matching "3".
We are trying to take into account the leading zeros for the search, any ideas?
(The stoplist for the full text is empty).
UPDATE: The Query
SELECT * FROM Table
WHERE CONTAINS(SearchIndex, '"003*"')