What you are looking for is the hitcount operator which is a count of the
number of matches. SQL FTS does not supply this.
Rank does reflect the number of hits, but if there are a lot of words in the
document/row rank will be depressed. So if you have two docs in which the
words occur 10 times, a shorter doc will have a higher rank.
To get rank use ContainsTable or FreeTextTable. Here is an example of such a
query:
select KeyID, Problem, Cause, Rank from TableName join
FreeTextTable(TableName,*,'SearchPhrase') as a
on a.[key]=KeyID
order by Rank Desc

Signature
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
> CREATE Table MyTable(
> ID int,
[quoted text clipped - 10 lines]
>
> Rakesh