Hi All,
I have a Restful Service : http://services.groupkt.com/state/search/IND?text=pradesh which will give me the some data
Also I have the below table
CREATE TABLE state_details (
id NUMBER(10) PRIMARY KEY,
country VARCHAR2(50),
name VARCHAR2(50),
abbr VARCHAR2(50),
area VARCHAR2(45),
largest_city VARCHAR2(50),
capital VARCHAR2(50)
);
Now my requirement is to read the data using plsql procedure/functions from the service http://services.groupkt.com/state/search/IND?text=pradesh and insert into STATE_DETAILS table.
Thanks & Regards,
Susanto Paul