/
Inexact Match for Strings

Inexact Match for Strings

Scenario

Often, data will get out of alignment, especially in cases where the data is being typed into multiple systems. Names, Addresses and other free form entries can contain errors, and matching up records where there are such errors can be very difficult.

Create 2 tables. Join / Merge the two tables together using a text value as the key, but all joins where the 2 strings are "almost" the same.

Solution:

  • Merge tables based on exact string matches
  • Excluding exact matches, cycle thru unmatched records looking for near matches.
  • Additional features of this pattern may include :
    • Best Match only
    • Consume Matches. i.e. once a match is made, that record cannot be matched against any other record.
    • Auto-Match threshold. i.e. above a certain level of matching (to be defined by the user/client), automatically match records. below that level, create a report / mechanism for manually tagging matches.


Related content

Using Filters And Order/Index Lookup
Using Filters And Order/Index Lookup
Read with this
Inexact Match for Strings
Inexact Match for Strings
More like this
Enriching Data with Data From Another Set
Enriching Data with Data From Another Set
Read with this
Inexact Match for Strings
Inexact Match for Strings
More like this
Inexact Matching Strings
Inexact Matching Strings
More like this
Inexact Matching Strings
Inexact Matching Strings
More like this