Created
December 10, 2010 10:30
-
-
Save 0xh3x/736067 to your computer and use it in GitHub Desktop.
This file contains 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
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