Is there a way to geocode a table of addresses so that latitude and longitude columns can be updated with the correct details.

Ideally I would like a system that will operate every so often, geocoding any address that did not have a lat / long. Currently there are areound 30,000 addresses in said table.

Thanks in advance

Edit

These are indeed postal addresses for the UK area.

link|improve this question

73% accept rate
Will this help you? maxmind.com/app/geoip_country – Jirapong Sep 14 '10 at 11:17
Are these postal addresses? If so, For what locale(s) do you need to geocode the addresses for? – Rowland Shaw Sep 14 '10 at 11:21
feedback

1 Answer

I would suggest using SQL CLR to write a stored procedure where the lookup can be saved to the address table. Generally this s easy using google web service. If you require high volume there is a fee but the free limit is quite high.

Then you could run an agent job to call the sproc which would on process adressez that were not prevously geocoded.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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