Created
December 10, 2010 10:30
-
-
Save 0xh3x/736066 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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