My Python script is supposed to perform batch lookups. It works ok for about 1,000 addresses, then runs into error 000010. Here is the skeleton of the script:
# 2 - SAVE TEXT FILE WITH ADDRESS INFORMATION TO GDB.
arcpy.TableToTable_conversion( ...)
# 3 - GEOCODE ADDRESS FILE THAT WAS SAVED IN GDB.
arcpy.GeocodeAddresses_geocoding( ...)
The script geocodes about 1,000 addresses, then aborts with:
File "C:\Program Files (x86)\ArcGIS\Desktop10.2\arcpy\arcpy\geocoding.py", line 192, in GeocodeAddresses
raise e
arcgisscripting.ExecuteError: ERROR 000010: Geocode addresses failed.
Failed to execute (GeocodeAddresses).
Anybody has excperience with this? Any help would be MUCH appreciated.
Wolf