J
Jordan
So far I have helped my users search for records by building search forms
that will allow them to check a few boxes and build a query for them. It
has always been "Find orders for Customer X", "Find closed orders", "Find
shipments over X dollars", etc.
Now I have got some tables that have memo fields in them and users want to
be able to find records based on some of the words and phrases in the memos.
I now need the ability to find record that mention 60 degrees, shaft
wobbles, and so on. Naturally doing a query like below would be horrible on
a large table with a lot of notes:
SELECT * from BIGTABLE where NoteField = "Dumb Phrase"
I figure that I will turn on the SQL 2000 servers ability to perform full
text indexes on these table (or fields in the table), but I don't know how
to query the tables to make use of it. I am hoping to get results something
like a web seach engine where if I put in the words Dumb and Phrase I get a
likely order of results
that will allow them to check a few boxes and build a query for them. It
has always been "Find orders for Customer X", "Find closed orders", "Find
shipments over X dollars", etc.
Now I have got some tables that have memo fields in them and users want to
be able to find records based on some of the words and phrases in the memos.
I now need the ability to find record that mention 60 degrees, shaft
wobbles, and so on. Naturally doing a query like below would be horrible on
a large table with a lot of notes:
SELECT * from BIGTABLE where NoteField = "Dumb Phrase"
I figure that I will turn on the SQL 2000 servers ability to perform full
text indexes on these table (or fields in the table), but I don't know how
to query the tables to make use of it. I am hoping to get results something
like a web seach engine where if I put in the words Dumb and Phrase I get a
likely order of results