Skip to content

Instantly share code, notes, and snippets.

@0xh3x
Created December 10, 2010 10:30
Show Gist options
  • Save 0xh3x/736067 to your computer and use it in GitHub Desktop.
Save 0xh3x/736067 to your computer and use it in GitHub Desktop.
declare
l_start number DEFAULT dbms_utility.get_time;
begin
my_test_int;
dbms_output.put_line('my_test_int: ' ||
ROUND((dbms_utility.get_time - l_start) / 100, 2) || ' წამი...');
l_start := dbms_utility.get_time;
my_test_nat;
dbms_output.put_line('my_test_nat: ' ||
ROUND((dbms_utility.get_time - l_start) / 100, 2) || ' წამი...');
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment