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] "John Kane" <jt-kane@comcast.net> wrote in message
news:OrKcow63DHA.3216@TK2MSFTNGP11.phx.gbl...
> 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
>
>
>
>
> "shank" <shank@tampabay.rr.com> wrote in message
> news:eWzvU953DHA.2136@TK2MSFTNGP12.phx.gbl...
> > 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
> >
> >
>
>