Geocode Result - Precisely Data Integrity Suite

Data Integrity Suite APIs

Product
Data_Integrity
Spatial_Analytics
Data_Enrichment
geo_addressing_1
Services
Spatial Analytics
Data Enrichment
Geo Addressing
ft:title
Data Integrity Suite APIs
ft:locale
en-US
PublicationType
pt_developer
copyrightfirst
2023
copyrightlast
2026
Use this query to check the results:
select * from all_data_result;
Use this query to verify the successful geocoded results:
select country,count(country) from all_data_result 
where parse_json(address):status = 'OK' 
group by country;
Use this query to verify the records that were unable to geocode:
select country,count(country) from all_data_result 
where parse_json(address):status != 'OK'
group by country;