Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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...
    > 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
    >
    >

    Jacco Schalkwijk Guest

  4. #3

    Default soundex function

    has anybody already developed a server side soundex
    function?
    arthur benedetti white Guest

  5. #4

    Default 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

  6. #5

    Default 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

  7. #6

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139