Groups | Blog | Home
all groups > sql server full text search > january 2004 >

sql server full text search : using Full-Text Catalogs


John Kane
1/20/2004 3:21:38 PM
shank,
There maybe a couple of issues here... First of all, what is the exact
version of SQL Server you are using? Could you post the full output of:
SELECT @@version -- as this is helpful in troubleshooting SQL FTS issues...

Secondly, after you created the FT Catalog, did you run a Full Population?
and if so, what that population successful? You should review your server's
Application event log for "Microsoft Search" source events to confirm if the
Full Population was successful.

Regards,
John




[quoted text, click to view]

shank
1/20/2004 4:49:46 PM
I finally got my local SQL Server setup and created my first catalog. That
catalog has 3 tables in it. I'm just trying some simple searches without
success.

-- This query syntax checks out OK, but yields no results.
SELECT OrderNo, Description
FROM Stock
WHERE FREETEXT(Description, 'Amplifier')

-- This query yields 2 results, which is correct.
SELECT OrderNo, Description
FROM Stock
WHERE Description = 'Amplifier'

What am I doing wrong with FREETEXT? I assumed I could type an exact match
and get results.
thanks

shank
1/20/2004 11:57:28 PM
SELECT @@version = Microsoft SQL Server 2000 - 8.00.760 (Intel X86) Dec
17 2002 14:22:05 Copyright (c) 1988-2003 Microsoft Corporation Developer
Edition on Windows NT 5.1 (Build 2600: Service Pack 1)

Ok... I'm an idiot! When I setup the catalogs, I could have sworn they were
populated during the process. Not! I went back and populated and it appears
to be working now. I'm sure I will be back though.
Thanks for your help!!!!


[quoted text, click to view]

AddThis Social Bookmark Button