I work for a public health agency that has lots of different demographic datasets--stored in SQL sever, Access and Excel. I've written an application that allows people to find 'matches' in those datasets based on different criteria, set up with a GUI. For instance, one 'match' might be that the First, Last and DOB match in both datasets--but the SSN is 'off by 1' (determined by the Levenshtein algorithm).
These are big datasets. The matching criteria can get really complex. Right now, I find matches by pulling both datasets into data tables in memory and then going row-by-row through the first table and seeing if there are any rows in the second table that match (using LINQ). So my code looks something like:
For each table1Row in TableOne/DatasourceOne
table2Options=from l in table2rows where Levenshtein(table1Row.first, l.first)<2 //first name off by one
table2Options=from l in table2rows where Levenshtein(table1Row.last, l.last)<2 //last name off by one
if table2Options.count>1 then the row in table1 'matches' table 2
Next
The code produces the correct output (finds matches) but it is SLOOOW. I know that going row-by-row is supposed to be slower--but using LINQ to find all the records all at once goes even slower.
From l in table1, k in table2 where Levenshtein(l.first, k.first)<2 and Levenshtein(l.last, k.last)<2 select l //this takes forever because it calculates the function for l rows * k rows
Any ideas on how to do this core matching faster?
table1Row.first, l.firstandtable1Row.last, l.lastwith their related data so for those cases, you only have to search through the cache data and not the full table? You'd probably have to do some usage analysis to see if this would make sense in your case. – FrustratedWithFormsDesigner Mar 6 '12 at 14:33