Skip to content

Instantly share code, notes, and snippets.

@0xh3x
Created December 10, 2010 10:30
Show Gist options
  • Save 0xh3x/736066 to your computer and use it in GitHub Desktop.
Save 0xh3x/736066 to your computer and use it in GitHub Desktop.
alter session set plsql_code_type='NATIVE';
create or replace procedure my_test_nat is
n number;
begin
n := 0;
for i in 1 .. 10000 loop
for ii in 1 .. 80000 loop
n := n + 1;
n := n + 1;
end loop;
end loop;
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment