Hello,I use the full-text search utility in SQL Server 2005 to find word in PDFs document.This is my 'Documents' table:id (PK), data (VarBinary(max)), extension (nvarchar(4))
My full-text catalog on 'data' column works fine because when I search 'Microsoft', my document containing this word is returned as result.SELECT * FROM Documents WHERE freetext([data], 'Microsoft');1 , 0x255044...., .pdf
But I need to know how many times 'Microsoft' word appears in this document.Do you have any idea how can I retrieve this information?Thanks in advance!