I am trying to use SQL Server 2005 full-text search to find single forward slash characters in an indexed column without success.
Can someone tell me if this is possible at all? Example:
In my CentralSearchCache table, the SearchData column contains a row with the text "This / string / contains / forward / slashes".
This request:
SELECT * FROM FREETEXTTABLE(CentralSearchCache, SearchData, 'forward/slashes')
returns data, while this query:
SELECT * FROM FREETEXTTABLE(CentralSearchCache, SearchData, '/')
returns nothing. Is there a way to find strings containing one or more forward slashes?
Many thanks.
sql sql-server sql-server-2005 full-text-search
Leonard marnham
source share