Connor and Chris will both be at AI World from October 12 to October 17 , the premier Oracle conference of 2025. If you're in Vegas, please come say Hi or pop into our sessions
Thanks for the question, Razvan.
Asked: January 20, 2017 - 5:58 pm UTC
Last updated: January 25, 2017 - 1:43 am UTC
Version: 12.1.0.2
Viewed 1000+ times
SQL> create table sqlbind_table 2 as 3 select * 4 from dba_hist_sqlbind 5 where 1=0; Table created. SQL> SQL> SQL> set serverout on SQL> begin 2 for i in ( select * from dba_hist_sqlbind ) 3 loop 4 begin 5 insert into sqlbind_table values i; 6 exception 7 when others then 8 dbms_output.put_line('aggghhh'); 9 end; 10 end loop; 11 end; 12 / PL/SQL procedure successfully completed.
Razvan Balu, January 24, 2017 - 7:44 pm UTC
Check out more PL/SQL tutorials on our LiveSQL tool.
PL/SQL reference manual from the Oracle documentation library