SQL Server Full-Text Search computes rank based on the frequency of the word in the document and in the set of all documents (TFIDF). Is it possible to access these values d
I've not worked with Full-Text Search, but I have before accomplished a similar result by using a numbers table-based routine to split the input text into individual words (many examples of how to do this available elsewhere) and running aggregate functions against the results. Faster than you'd expect actually.