Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

JSON format file

murali rishnaMar 22 2021

Hi Team,
How to download the JSON data if we pass the URL as like below
select functionname('www.oracle.com') from dual.
please let me know how to do.
SAMPLE CODE
declare
l_req1 utl_http.req;
l_resp1 utl_http.resp;
begin
l_req1 := utl_http.begin_request('https://www.oracle.com/index.html');;)
l_resp1 := utl_http.get_response(l_req1);
utl_http.end_response(l_resp1);
end;
/

Thanks

Comments
Post Details
Added on Mar 22 2021
3 comments
175 views