Using JOIN allows cleaning multiple addresses contained in any data source for which you can create a synonym.
This example shows how to clean a table that contains address data by using a JOIN to pass parameters to AddressDoctor.
T1.STREETNO |
T2.STREET1 |
T1.APT |
T2.STREET2 |
T1.STATE |
T2.PROVINCE1 |
T1.POSTALCODE |
T2.POSTALCODE1 |
T1.CITY |
T2.LOCALITY1 |
T1.COUNTRY |
T2.COUNTRY1 |
T1.COUNTRY = 'USA'
Note that some of the addresses were corrected (PROCESSSTATUS of C4) others could not be (PROCESSSTATUS of I2 and I4). From this, we can conclude that this file has a lot of bad addresses.
iWay Software |