No, there is no way supported to currently do this. The feature you are
looking for is called hitcount and ships with other Microsoft Search
products.
I would try containstable as it is a more stricter match.

Signature
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
> Hi,
>
[quoted text clipped - 43 lines]
>
> Brian Binnerup
Brian Binnerup - 19 Mar 2007 22:05 GMT
Hi Hilary,
Thank you for the quick reply.
It's unfortunate that this can't be done.
But, the containstable seem to allow only single word searches? I here have
multiple.
Would you split them up in some way then?
Regards,
Brian
> No, there is no way supported to currently do this. The feature you are
> looking for is called hitcount and ships with other Microsoft Search
[quoted text clipped - 49 lines]
>>
>> Brian Binnerup
Brian Binnerup - 19 Mar 2007 22:19 GMT
I tried to construct the following:
SELECT TOP 10 tblTitles.nvcTitle, KEY_TBL.RANK FROM tblTitles,
CONTAINSTABLE (tblTitles, *, 'ISABOUT(Big WEIGHT (.9), Mommas WEIGHT (.8),
House WEIGHT (.7))') AS KEY_TBL
WHERE
tblTitles.guid = KEY_TBL.[KEY]
ORDER BY KEY_TBL.RANK DESC
But, it suffers from the same problem:
1. Dragnet (1951/ Digiview Entertainment), Vol. 3: The Big Crime / The Big
Shoplift / The Big Girl 313
2. Big Momma's House 261
Again, the title with three "Big" words is listed first.
Can I in any way get it to only count a word once?
Regards,
Brian
> No, there is no way supported to currently do this. The feature you are
> looking for is called hitcount and ships with other Microsoft Search
[quoted text clipped - 49 lines]
>>
>> Brian Binnerup
Hilary Cotter - 20 Mar 2007 00:56 GMT
Wrap your search phrase in double quotes. IE
SELECT TOP 10 tblTitles.nvcTitle, KEY_TBL.RANK FROM tblTitles,
CONTAINSTABLE (tblTitles, *, ' "Big momma''s house" ') AS KEY_TBL
WHERE
tblTitles.guid = KEY_TBL.[KEY]
ORDER BY KEY_TBL.RANK DESC

Signature
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
>I tried to construct the following:
>
[quoted text clipped - 72 lines]
>>>
>>> Brian Binnerup