vote up 1 vote down star

How do you model your customer address data and what techinques are you using to ensure the quality of the data?

Things like deduplication algorithms, duplicate matches, making sure that packages and invoices can actually be delived and such? Esepcially in systems handling customers in multiple countries.

flag

43% accept rate
Are you designing a file, or a database? They're very different. One is an abstraction of a physical data store, the other is something you should never do. – Tanktalus Oct 9 '08 at 22:19
"file" in this case is the business term for the customer data. That is we have "file managers" that are responsible for the customer data. What I'm designing (or rather migrating) is the data model expressed in both OOP terms and SQL DDL. – John Nilsson Dec 29 '08 at 21:05

2 Answers

vote up 1 vote down

There was a post that may help. It was posted a little while back: http://stackoverflow.com/questions/134956/how-do-you-perform-address-validation

link|flag
vote up 0 vote down

There are a number of vendors that provide address verification and normalization (converting multiple equivalent addresses into a standard form) as a service. Some of these vendors also offer the ability to figure out taxes at that address for invoicing purposes. Once you have the normalized form of the address, finding duplicates is just a matter of comparing entries (you might want to use a hash for speed). I'm hesitant to endorse a particular vendor of this software, or even list a few, on Stackoverflow...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.