Data Comparison - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T12:53:10Z http://stackoverflow.com/feeds/question/126885 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/126885/data-comparison 5 Data Comparison wcm 2008-09-24T12:40:17Z 2008-10-08T15:49:10Z <p>We have a SQL Server table containing Company Name, Address, and Contact name (among others).</p> <p>We regularly receive data files from outside sources that require us to match up against this table. Unfortunately, the data is slightly different since it is coming from a completely different system. For example, we have "123 E. Main St." and we receive "123 East Main Street". Another example, we have "Acme, LLC" and the file contains "Acme Inc.". Another is, we have "Ed Smith" and they have "Edward Smith" </p> <p>We have a legacy system that utilizes some rather intricate and CPU intensive methods for handling these matches. Some involve pure SQL and others involve VBA code in an Access database. The current system is good but not perfect and is cumbersome and difficult to maintain </p> <p>The management here wants to expand its use. The developers who will inherit the support of the system want to replace it with a more agile solution that requires less maintenance. </p> <p>Is there a commonly accepted way for dealing with this kind of data matching?</p> http://stackoverflow.com/questions/126885/data-comparison/126903#126903 4 Answer by torial for Data Comparison torial 2008-09-24T12:44:55Z 2008-09-24T12:44:55Z <p>Here's something I wrote for a nearly identical stack (we needed to standardize the manufacturer names for hardware and there were all sorts of variations). This is client side though (VB.Net to be exact) -- and use the Levenshtein distance algorithm (modified for better results):</p> <pre><code> Public Shared Function FindMostSimilarString(ByVal toFind As String, ByVal ParamArray stringList() As String) As String Dim bestMatch As String = "" Dim bestDistance As Integer = 1000 'Almost anything should be better than that! For Each matchCandidate As String In stringList Dim candidateDistance As Integer = LevenshteinDistance(toFind, matchCandidate) If candidateDistance &lt; bestDistance Then bestMatch = matchCandidate bestDistance = candidateDistance End If Next Return bestMatch End Function 'This will be used to determine how similar strings are. Modified from the link below... 'Fxn from: http://ca0v.terapad.com/index.cfm?fa=contentNews.newsDetails&amp;newsID=37030&amp;from=list Public Shared Function LevenshteinDistance(ByVal s As String, ByVal t As String) As Integer Dim sLength As Integer = s.Length ' length of s Dim tLength As Integer = t.Length ' length of t Dim lvCost As Integer ' cost Dim lvDistance As Integer = 0 Dim zeroCostCount As Integer = 0 Try ' Step 1 If tLength = 0 Then Return sLength ElseIf sLength = 0 Then Return tLength End If Dim lvMatrixSize As Integer = (1 + sLength) * (1 + tLength) Dim poBuffer() As Integer = New Integer(0 To lvMatrixSize - 1) {} ' fill first row For lvIndex As Integer = 0 To sLength poBuffer(lvIndex) = lvIndex Next 'fill first column For lvIndex As Integer = 1 To tLength poBuffer(lvIndex * (sLength + 1)) = lvIndex Next For lvRowIndex As Integer = 0 To sLength - 1 Dim s_i As Char = s(lvRowIndex) For lvColIndex As Integer = 0 To tLength - 1 If s_i = t(lvColIndex) Then lvCost = 0 zeroCostCount += 1 Else lvCost = 1 End If ' Step 6 Dim lvTopLeftIndex As Integer = lvColIndex * (sLength + 1) + lvRowIndex Dim lvTopLeft As Integer = poBuffer(lvTopLeftIndex) Dim lvTop As Integer = poBuffer(lvTopLeftIndex + 1) Dim lvLeft As Integer = poBuffer(lvTopLeftIndex + (sLength + 1)) lvDistance = Math.Min(lvTopLeft + lvCost, Math.Min(lvLeft, lvTop) + 1) poBuffer(lvTopLeftIndex + sLength + 2) = lvDistance Next Next Catch ex As ThreadAbortException Err.Clear() Catch ex As Exception WriteDebugMessage(Application.StartupPath , [Assembly].GetExecutingAssembly().GetName.Name.ToString, MethodBase.GetCurrentMethod.Name, Err) End Try Return lvDistance - zeroCostCount End Function </code></pre> http://stackoverflow.com/questions/126885/data-comparison/126921#126921 2 Answer by Mark Brackett for Data Comparison Mark Brackett 2008-09-24T12:49:18Z 2008-09-24T12:49:18Z <p>SSIS (in Sql 2005+ Enterprise) has <a href="http://msdn.microsoft.com/en-us/library/ms137786.aspx" rel="nofollow">Fuzzy Lookup</a> which is designed for just such data cleansing issues. </p> <p>Other than that, I only know of domain specific solutions - such as <a href="http://www.usps.com/ncsc/addressmgmt/amsapi.htm" rel="nofollow">address cleaning</a>, or general <a href="http://en.wikipedia.org/wiki/Damerau-Levenshtein_distance" rel="nofollow">string matching techniques</a>.</p> http://stackoverflow.com/questions/126885/data-comparison/126938#126938 2 Answer by MusiGenesis for Data Comparison MusiGenesis 2008-09-24T12:54:11Z 2008-09-24T13:14:27Z <p>There are many vendors out there that offer products to do this kind of pattern matching. I would do some research and <strong>find a good, well-reputed product and scrap the home-grown system</strong>.</p> <p>As you say, your product is only good, and this is a common-enough need for businesses that I'm sure there's more than one excellent product out there. Even if it costs a few thousand bucks for a license, it will still be cheaper than paying a bunch of developers to work on something in-house.</p> <p>Also, the fact that the phrases "intricate", "CPU intensive", "VBA code" and "Access database" appear together in your system's description is another reason to find a good third-party tool.</p> <p>EDIT: it's also possible that .NET has a built-in component that does this kind of thing, in which case you wouldn't have to pay for it. I still get surprised once in a while by the tools that .NET offers.</p> http://stackoverflow.com/questions/126885/data-comparison/127094#127094 2 Answer by chris for Data Comparison chris 2008-09-24T13:23:08Z 2008-09-24T13:23:08Z <p>I'm dealing with exactly the same problem. Take a look at:</p> <p><a href="http://stackoverflow.com/questions/46007/tools-for-matching-nameaddress-data">http://stackoverflow.com/questions/46007/tools-for-matching-nameaddress-data</a></p> <p>for some tools that might help.</p> http://stackoverflow.com/questions/126885/data-comparison/127259#127259 1 Answer by HLGEM for Data Comparison HLGEM 2008-09-24T13:51:31Z 2008-09-24T13:51:31Z <p>Access doesn't really have the tools for this. In an ideal world I would go with the SSIS solution and use fuzzy lookup. But if you are currently using Access, the chances of your office buying SQL Server Enterprise edition seem low to me. If you are stuck with the current environment, you could try a brute force approach. </p> <p>Start with standardized cleansing of addresses. PIck standard abbreviations for Street, raod, etc. and write code to change all the normal variations to those standard addesses. Replace any instances of two spaces with one space, trim all the data and remove any non-alphanumeric characters. As you can see this is quite a task. </p> <p>As for company names, maybe you can try matching on first 5 characters of the name and the address or phone. You could also create a table of known variations and what they will relate to in your database to use for cleanising future files. So if you record with id 100 is Acme, Inc. you could have a table like this:</p> <p>idfield Name</p> <p>100 Acme, Inc.</p> <p>100 Acme, Inc</p> <p>100 Acme, Incorporated</p> <p>100 Acme, LLC</p> <p>100 Acme </p> <p>This will start small but build over time if you make an entry every time you find and fix a duplicate (make it part of you de-dupping process) and if you make an entry every time you are able to match the first part of the name and address to an existing company.</p> <p>I'd also look at that function Torial posted and see if it helps. </p> <p>All of this would be painful and timeconsuming, but would get better over time as you find new variations and add them to the code or list. If you do decide to stardardize your addressdata, make sure to clean production data first, then do any imports to a work table and clean it, then try to match to production data and insert new records. </p> http://stackoverflow.com/questions/126885/data-comparison/127680#127680 0 Answer by wcm for Data Comparison wcm 2008-09-24T14:58:57Z 2008-09-24T14:58:57Z <p>I just found this <a href="http://stackoverflow.com/questions/tagged/textmatching">link</a> that is related.</p> <p>I swear that I looked before I posted this.</p>