I'm trying to use SQL Server 2005's Full-Text Search to find single forward-slash characters within my indexed column, without success.
Can anyone 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 query:
SELECT * FROM FREETEXTTABLE(CentralSearchCache, SearchData, 'forward/slashes')
returns data, whereas this query:
SELECT * FROM FREETEXTTABLE(CentralSearchCache, SearchData, '/')
returns nothing. Is there any way of finding rows that contain one or more forward-slash characters?
Many thanks.