Created
December 10, 2010 10:29
-
-
Save 0xh3x/736065 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
create or replace procedure my_test_int 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