I have a problem with running below procedure in oracle 11g because of the JSON value feature not available in 11g. Can you please help in correcting the procedure. create or replace PROCEDURE “STANDARDIZE_ADDRESS” ( JSON_DOC IN VARCHAR2 , JSON_OUT OUT VARCHAR2 ) is CNTRY_IN VARCHAR2(100); STATE_IN VARCHAR2(100); CITY_IN VARCHAR2(100); LAT_IN VARCHAR2(100); LONG_IN VARCHAR(100); SOURCERead more