Tagged Questions
Soundex is an phonetic algorithm patented as far back as 1918 to index names based on their pronunciations in spoken English.
11
votes
1answer
309 views
Suggestions for Querying Database for Names
I have an Oracle database that, like many, has a table containing biographical information. On which, I would like to search by name in a "natural" way.
The table has forename and surname fields and, ...
11
votes
5answers
797 views
Finding similar sounding text in VBA
My manager tells me that there is a way to evaluate names that are spelled differently but sound similar in the way they are pronounced. Ideally, we want to be able to evaluate a user-entered search ...
9
votes
1answer
367 views
How to make an International Soundex?
E.g. the Soundex algorithm is optimized for English. Is there a more universal algorithm that would apply across large families of languages?
8
votes
5answers
4k views
Levenshtein distance based methods Vs Soundex
As per this comment in a related thread, I'd like to know why Levenshtein distance based methods are better than Soundex.
5
votes
2answers
455 views
Does MongoDB support soundex or fuzzy matching?
Does MongoDB support soundex or fuzzy matching? I want to spot dupes of basic contact name and address fields. I'm using the official C# driver. Thanks
5
votes
4answers
650 views
LINQ to SQL SOUNDEX - possible?
I have done a little bit of research on this and looked through a few articles both here on StackOverflow as well as some blog posts, but haven't found an exact answer. I also read that it is possible ...
5
votes
2answers
1k views
Enabling soundex/metaphone for non-English characters
I've been studying soundex, metaphone and other string search techniques the past few days, and in my understanding both algorithms work well in handling non-English words transliterated to English.
...
4
votes
2answers
102 views
Some changes on Soundex Algorithm
this algorithm is set to run over the fisrt word or till it fills the four encoded string. For instance, the result of the input "Horrible Great" is: H612 "it neglect the second word, or in other ...
4
votes
4answers
754 views
Intelligent web features, algorithms (people you may follow, similar to you …)
I have 3 main questions about the algorithms in intelligent web (web 2.0)
Here the book I'm reading http://www.amazon.com/Algorithms-Intelligent-Web-Haralambos-Marmanis/dp/1933988665 and I want to ...
4
votes
5answers
2k views
Use SOUNDEX() word by word on SQL Server
Here is my problem. For example I have a table Products that contain a field Name:
Products
ID | Name | ..
1 | "USB Key 10Go"
2 | "Intel computer"
3 | "12 inches laptop computer"
...
I'm ...
3
votes
1answer
61 views
SQL- soundex function
SELECT SOUNDEX ('Smith'), SOUNDEX ('Smythe');
----- -----
S530 S530
(1 row(s) affected)
Here, the value returned by the SOUNDEX() function is "S530".
Will you please tell me how the input ...
3
votes
2answers
114 views
Has Soundex been improved?
Soundex seems to be implemented in some DBMS's, but have there been any algorithmic improvements that are definitively better than the current implementation of Soundex?
3
votes
1answer
352 views
Optimizing a Soundex Query for finding similar names
My application will offer a list of suggestions for English names that "sound like" a given typed name.
The query will need to be optimized and return results as quick as possible. Which option ...
3
votes
1answer
352 views
Is there a “Sounds-Like” string matching algorithm implemented in Dutch?
I know about the Soundex and Double-Methaphone algorithms for "sounds-like" stringmatching in English. Where can I find a similar algorithm, or a port of one of the algorithms for the Dutch Language?
3
votes
3answers
739 views
“sounds-like”, “did you mean THAT” functionality using full text search in SQL Server 2005
I have implemented full text search over SQL Server 2005 database using CONTAINSTABLE keyword.
I was wondering is there a way to add a "sounds like" or google's "did you mean THAT" functionality if ...
3
votes
1answer
663 views
Is it possible to use Soundex (or other SQL functions) in LinqToSql?
Guess the title says it all. I'm refactoring some code currently implemented in stored procedures to use LinqToSql (for use in training). Is it possible to use SQL functions in a linqToSql Query?
2
votes
1answer
76 views
Soundex and checking for invalid sound
Is it ok to check for SQL returning a Soundex of 0000 based on the assumption that it isn't a valid word, e.g. has digits, spaces, special characters or is there a better way to do this?
2
votes
1answer
263 views
Sort By Soundex (or similar) `Closeness`
Is there any way to have MySQL order results by how close they 'sound' to a search term?
I'm trying to order fields that contain user input of city names. Variations and misspellings exist, and I'd ...
2
votes
2answers
3k views
PHP/MySQL: Highlight “SOUNDS LIKE” query results
Quick MYSQL/PHP question. I'm using a "not-so-strict" search query as a fallback if no results are found with a normal search query, to the tune of:
foreach($find_array as $word) {
clauses[] = ...
2
votes
3answers
237 views
Could use some help with this soundex coding
The US census bureau uses a special encoding called “soundex” to locate information about a person. The soundex is an encoding of surnames (last names) based on the way a surname sounds rather than ...
1
vote
1answer
229 views
Something better than SOUNDEX
Does anyone know of an algorithm that is better than SOUNDEX of relatively-spelt or pronounced words?
EDIT
I'm looking for something for SPANISH.
1
vote
2answers
148 views
compare short strings in different languages for similar sound - is Soundex the answer?
How could i get a sound similarity "rating" for a string written in one language with another string in another language: i.e an algorithm that will identify that
"David Letterman" and "דוד לטרמן" ...
1
vote
0answers
43 views
Soundex to match common SMS or IM short forms
I was doing bit of experimentation the Apache commons soundex. And, I found it works quite well for strings. I was looking for an API or way by which I can match words or strings in sms or usual IM ...
1
vote
1answer
90 views
Is there easy way to match word from a database table field with soundex?
Hi Just Before going deep into soundex, wanted to ask quick qiestion.
1 - field in the table[title] contains a "Sentence that has WORD I am looking for"
Q - Is there are easy way to match the WORD ...
1
vote
3answers
170 views
Suggestion For Finding Similar Rows In Mysql
i want select similar rows accourding to row's title columun. Title columun has mostly have 5 or 6 six keywords. Which algorithm do you recommend ? Soundex Maybe ?
P.S: Title columun has unicode ...
1
vote
2answers
563 views
How to check SOUNDEX in php when php SOUNDEX outputs only 3 digits
I am trying to do a comparison between company names using SOUNDEX, but the php call for soundex only outputs 3 digits so the comparisons aren't quite accurate. Is there a way to get a better soundex ...
1
vote
3answers
1k views
SQL Server's SoundEx function on non-Latin character sets?
Does SQL Server's (2000) Soundex function work on Asian character sets? I used it in a query and it appears to have not worked properly but I realize that it could be because I don't know how to read ...
1
vote
6answers
1k views
Data structure for soundex algorithm?
Can anyone suggest me on what data structure to use for a soundex algorithm program? The language to be used is Java. If anybody has worked on this before in Java. The program should have these ...
0
votes
2answers
65 views
How can I tokenize a string in MySQL?
My project is importing a sizable collection +500K rows of data from flat Excel files, which are manually created by a team of people. Now the problem is that it all needs to be normalized, for client ...
0
votes
0answers
29 views
Group Records based on Keywords in Datastore in AppEngine
I have a datastore with more than 2M records - they are mostly websites which I have spidered for last few days.
Now, the challenge is to find competitors based on keywords. There are lot of ...
0
votes
2answers
90 views
Trying to compare two tables with SOUNDEX
Could someone please explain how to use SOUNDEX (mysql/php) to match multiple words? I'm trying to make a simple in-site ad system.
I have one table with columns "ad_id" and "keywords", and another ...
0
votes
1answer
189 views
MS Access 2003 Using SoundEx to search from a form
I need to get a search to look for "fuzzy matches" in a database when searching by Surname. I have implemented the following function to enable a SoundEx function, which has no issues.
I am getting ...
0
votes
2answers
116 views
Best way to design soundex based search
I have a table of forum posts, and want to improve the basic search functionality as we get a lot of users from all over the world who are not native English speakers and will have trouble finding ...
0
votes
2answers
179 views
Is it better to use PHP or MySQL for Soundex queries?
I am just wondering whether it would be better to use PHP's Soundex Function or MySQL's Soundex Function?
Also do the PHP and MySQL Soundex function produce the same results?
0
votes
3answers
211 views
finding similar strings to given by keywords, each keyword have got it's own 'power'
This question is a chalenge for me, my friend can`t tell me how to do it, but he is really good programmer (I think).
Users can put into database sentences. When user puts a sentence it is saved in ...
0
votes
4answers
277 views
F# - Remove subsequent duplicates from an array of characters (unordered)
I am trying to learn F#. And I need som help with a simple soundex expression.
I am using the following ruleset for Simplified (also called American) soundex:
1.) Assign characters to classes
2.) ...
0
votes
1answer
55 views
Mysql on update and default
I want to have a column on a table that is automatically updated when the row is updated, this column is a soundex version of another column, hypothetically, something like this:
CREATE TABLE `test` ...
0
votes
0answers
85 views
SoundEx Algorithm testability
I have an application in which SoundEx algorithm is implemented. Now i want to test the functionality.
Here is what i observe
In my database i have 2 names Breaks and Brakes. Assume these are names ...
0
votes
1answer
94 views
trying to use SOUNDEX in query but getting an error in terms of database columns in mysql
Trying to figure out what went wrong, must be a silly syntax.
$objDatabase = QApplication::$Database[1];
$strQuery = 'UPDATE `account` SET `sndx`=SOUNDEX("'.$objAccount->Name.'") WHERE ...
0
votes
2answers
540 views
Soundex algorithm in Python (homework help request)
The US census bureau uses a special encoding called “soundex” to locate information about a person. The soundex is an encoding of surnames (last names) based on the way a surname sounds rather than ...
0
votes
4answers
780 views
Soundex Algorithm implementation using C++
Put simply a Soundex Algorithm changes a series of characters into a code. Characters that produce the same Soundex code are said to sound the same.
The code is 4 characters wide
The first character ...
0
votes
2answers
578 views
Double-metaphone errors
I'm using Lawrence Philips Double-Metaphone algorithm with great success, but I have found the odd "unexpected result" for some combinations.
Does anyone else have additions or changes to the ...