Ask a Question related to ASP.NET General, Design and Development.
-
Abdulrauf #1
soundex function
Hello,
Is there any way I can compare a name column in one table to a column in
another table using the soundex function.
I want to loop through the names in one table and compare them with similar
sounding names in the second table.
Thank you,
Rohith
Abdulrauf Guest
-
Suggestions for soundex/metaphone
hey all, i am currently using a search engine on my site that compares values stored in the meta tags with what the user types in. any matches... -
note 33922 added to function.soundex
The soundex 'different letter in front' problem can be solved by using levenshtein() on the soundex codes. in my application, which is searching a... -
SOUNDEX-CODE in SQL
I may have what you are looking for, but I need to better understand the problem. Are you looking for this to exist as a DB2 user-defined... -
Another way of jusiing difference/soundex that support norwegain language and spesiall character like ّوه
Hi Im jusing difference to get records from a table that almost match some search criteria. The problem is that it does not support characters that... -
note 33132 deleted from function.register-shutdown-function by sniper
Note Submitter: markus@malkusch.de ---- I can't agree with nick at nickjoyce dot com. I use php 4.2.3 on linux and my shutdown function is... -
Jacco Schalkwijk #2
Re: soundex function
SELECT table1.<column_list> , table2.<column_list>
FROM table1
INNER JOIN table2
ON SOUNDEX(table1.name) = SOUNDEX(table2.name)
--
Jacco Schalkwijk MCDBA, MCSD, MCSE
Database Administrator
Eurostop Ltd.
"Abdulrauf" <rshetty@amideast.org> wrote in message
news:Om4$PyKQDHA.2160@TK2MSFTNGP11.phx.gbl...similar> Hello,
>
> Is there any way I can compare a name column in one table to a column in
> another table using the soundex function.
>
> I want to loop through the names in one table and compare them with> sounding names in the second table.
>
> Thank you,
> Rohith
>
>
Jacco Schalkwijk Guest
-
arthur benedetti white #3
soundex function
has anybody already developed a server side soundex
function?
arthur benedetti white Guest
-
Wim Hollebrandse #4
Re: soundex function
Basic SoundEx algorithms are not that difficult to implement yourself.
For a good example, check out the following link:
[url]http://www.codeproject.com/csharp/soundex.asp[/url]
Hope that helps,
Wim Hollebrandse
[url]http://www.wimdows.com[/url]
[url]http://www.wimdows.net[/url]
"arthur benedetti white" <adbenedettiwhite@bpa.gov> wrote in message
news:02f801c34c95$7a7daac0$a301280a@phx.gbl...> has anybody already developed a server side soundex
> function?
Wim Hollebrandse Guest
-
Arthur Benedetti White #5
soundex function
I want to be able to include a soundex function in my
asp.net pages do compare values users enter in a phonebook
against the actual data in Active Directory (AD).
we used to use sql server, but the source data has now
moved from sql server to AD where there is not a native
soundex function.
-Arthur.>-----Original Message-----
>Hi,
>
>I have developed both server side and client side soundex
>implementation in one of my old project. If you can
>elaborate your requiremrnts I can help you.
>
>There is inbuilt Soundex function in SQL server. If you
>are looking for spell check implementation based on
>soundex you can refer the MS word dictionary too....
>
>Let me know if you need furtehr ehlp.
>
>regards
>Sreejumon[MVP]
>>.>>-----Original Message-----
>>has anybody already developed a server side soundex
>>function?
>>.
>>
>Arthur Benedetti White Guest
-
Wim Hollebrandse #6
Re: soundex function
Populate the data from Active Directory (with a certain applied filter) and
then perform your own custom SoundEx (see link I sent in previous reply) on
that.
HTH,
Wim Hollebrandse
[url]http://www.wimdows.com[/url]
[url]http://www.wimdows.net[/url]
"Arthur Benedetti White" <adbenedettiwhite@bpa.gov> wrote in message
news:036c01c34ca2$93670100$a401280a@phx.gbl...> I want to be able to include a soundex function in my
> asp.net pages do compare values users enter in a phonebook
> against the actual data in Active Directory (AD).
>
> we used to use sql server, but the source data has now
> moved from sql server to AD where there is not a native
> soundex function.
>
> -Arthur.> >-----Original Message-----
> >Hi,
> >
> >I have developed both server side and client side soundex
> >implementation in one of my old project. If you can
> >elaborate your requiremrnts I can help you.
> >
> >There is inbuilt Soundex function in SQL server. If you
> >are looking for spell check implementation based on
> >soundex you can refer the MS word dictionary too....
> >
> >Let me know if you need furtehr ehlp.
> >
> >regards
> >Sreejumon[MVP]
> >> >.> >>-----Original Message-----
> >>has anybody already developed a server side soundex
> >>function?
> >>.
> >>
> >
Wim Hollebrandse Guest



Reply With Quote

