We're doing a LOT of work towards trying to reconcile about 1,000 duplicate manufacturer names and 1,000,000 duplicate part numbers. One thing that has come up is how to "match" things like "Limited" vs. "Ltd." vs. "Ltd"
The purpose is for the application to reconcile these matched items into a standard format. So:
ACME Ltd. ACME Limited ACME Ltd
Should all be reconciled into ACME Ltd.
This will also be used to prevent entering additional duplicates in the future.
Any suggestions on how to accomplish this pattern matching in SQL Server? Any known algorithms to find items with mapped equivalencies, etc...?
Thanks!
Eric.