Bulk Operation Performance Test
create or replace type i_table is table of number(10);
 
create or replace type v_table is table of varchar2(10);
 
create or replace procedure prc_forall_insert(v_1 i_table,v_2 v_table) as
begin
    forall i in 1..v_1.count
        insert into hs_test values(v_1(i),v_2(i));
end;
/