del_nz,
I wasn't aware of 'Soundex', but I checked it (along with 'Diffrence') and it's not what I need.
And...
I searched for "autiful" in Yahoo and AltaVista and I did get results with "beauitful".
Thanx anyway
Main Topics
Browse All TopicsHi Experts,
I need to perform a search on a large amount of data stored in a large amount of tables and fields in SQL Server. I don't want to use the LIKE operator in the query, mainly because it means I'll have to write all field names hard-coded (and it's a lot). Besides, I imagin this method is slow with comparison to other available methods.
I tried to use the full-text search, by making catalogs and full-text indexes.
The problem is that CONTAINS and FREETEXT that go along with full-text search do not enable a search for an exact phrase (if it's not a whole word).
for example: suppose there is a row with the word "beautiful", I want a search phrase "autiful" to return this row. But the full-text search knows how to match prefix's, not suffix's.
What's the solution for this?
What method do the search-engines use, maybe Index-Server?
(I don't know much about it, is this the solution?)
Thanx,
motile
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
motile:
This old question needs to be finalized -- accept an answer, split points, or get a refund. For information on your options, please click here-> http:/help/closing.jsp#1
EXPERTS:
Post your closing recommendations! No comment means you don't care.
Business Accounts
Answer for Membership
by: del_nzPosted on 2001-11-19 at 01:26:22ID: 6641283
I believe that the underlying search service is the same for both Index Server and SQL Server Full Text Search ie MS Search.
In the past I have found quite good information and backgrounders in the Index Server stuff in MSDN about how lexical search rules work.
As far as I understand it, CONTAINS clauses with wildcards are based on word stemming rules (trimming suffixes) so its only going to be matched prefixes that you are going to find. Using wildcards just increases the range of acceptable prefixes.
If you try a search on google say for "autiful" then you don't get results with "beautiful" but I have seen some fuzzy search engines - I think they might work on a Soundex type algorithm. Are you aware of the soundex function in transact-sql?