Hi,
I have implemented a stored procedure which would search a comma separated keywords using the Full Text Search and also show the count.
I'm using sys.dm_fts_index_keywords_by_document view to retrieve occurence_count of each keyword. This works great as long as these keywords are single words.
When I use the phrase; the search is performed great but I cannot retrieve the occurence_count of phrase using sys.dm_fts_index_keywords_by_document.
Is there some other view or any other way; that I can retrieve the occurence count for the complete phrase?
Thanks