declare
-- Local variables here
count integer;
begin
-- Test statements here
dbms_output.put_line('start:'||sysdate);
for count in 1..1000000 loop
insert into test(id) values (1);
commit;
end loop;
dbms_output.put_line('end:'||sysdate);
end;