The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
122 views

MelissaData Replacement?

We currently use MelissaData to scrub our addresses. We have been pretty unhappy with the product and the support in general (considering how expensive they are). Can anyone recommend a good ...
2
votes
3answers
4k views

Lookup county name using address, city, state, and zip [closed]

I'm working on a shopping cart that needs to calculate tax rates based on the ship-to county. I don't want to ask the customer for the county but instead I'd like to look up the county by using the ...
6
votes
5answers
5k views

Java postal address parser

Somewhat related to this question, but in the absence of any answer about QuickBooks specifically, does anyone knows of an address parser for Java. Something that can take unstructured address ...
1
vote
1answer
377 views

Runtime CRC checking

Q. I have a hex code running on a machine. How do I calculate the checksum of the entire code at runtime?
0
votes
8answers
2k views

Weighted search algorithm to find like contacts

I need to write an algorithm that returns the closest match for a contact based on the name and address entered by the user. Both of these are troubling, since there are so many ways to enter a ...
2
votes
2answers
265 views

What online services mail coded postcards for address verification?

At about 24:20 in Stack Overflow Podcast 26 Joel Spolsky said there are services that mail postcards with codes for address verification. Spolsky: You know what we could have badges for? We ...
1
vote
2answers
124 views

Customer File design

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 ...
39
votes
14answers
44k views

How to convert an address to a latitude/longitude?

How would I go about converting an address or city to a latitude/longitude? Are there commercial outfits I can "rent" this service from? This would be used in a commercial desktop application on a ...
1
vote
2answers
2k views

Whats the best way to store and retrive postal addresses using a sql server database and the .NET framework?

I'm looking for a common pattern that will store and access global addresses in database. Components or other technologies can be used. The following criteria must be adheard to... Every line of the ...
3
votes
5answers
4k views

Extract Address Information from a Web Page

I need to take a web page and extract the address information from the page. Some are easier than others. I'm looking for a firefox plugin, windows app, or VB.NET code that will help me get this done. ...
8
votes
9answers
2k views

find duplicate addresses in database, stop users entering them early?

How do I find duplicate addresses in a database, or better stop people already when filling in the form ? I guess the earlier the better? Is there any good way of abstracting street, postal code etc ...
22
votes
6answers
7k views

What is the “best” way to store international addresses in a database?

What is the "best" way to store international addresses in a database? Answer in the form of a schema and an explanation of the reasons why you chose to normalize (or not) the way you did. Also ...
80
votes
21answers
50k views

Parse usable Street Address, City, State, Zip from a string

Problem: I have an address field from an Access database which has been converted to Sql Server 2005. This field has everything all in one field. I need to parse out the individual sections of the ...