I have a query that is running something like this in SQL Server 2008
Select [key], Rank
From ContainsTable(tblDocuments, '"Exact Match"')
At the time we decided to use SQL FTS Exact Matching wasn't a requirement; sadly requirements move on and now we are interested in the possibility of getting exact matches too - i am not in a place where I can easily drop in Lucene or DTSearch. This doesn't appear to be so easy As I am searching stored documents I don't have the option of falling back on standard sql to get my exact match.