-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path11g_nextval.tst
54 lines (41 loc) · 1.04 KB
/
11g_nextval.tst
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
@tmr.ot
SET serveroutput on format wrapped
DROP SEQUENCE my_sequence
/
CREATE SEQUENCE my_sequence
/
DECLARE
l_value PLS_INTEGER;
dual_tmr tmr_t := NEW tmr_t ('Select from dual', 1000000);
direct_tmr tmr_t := NEW tmr_t ('Direct', 1000000);
BEGIN
dual_tmr.go;
FOR indx IN 1 .. 1000000
LOOP
SELECT my_sequence.NEXTVAL
INTO l_value
FROM DUAL;
END LOOP;
dual_tmr.STOP;
--
direct_tmr.go;
FOR indx IN 1 .. 1000000
LOOP
l_value := my_sequence.NEXTVAL;
END LOOP;
direct_tmr.STOP;
END;
/
/*
No noticeable difference in performance!
Timings in seconds for "Select from dual":
Elapsed = 49.05
Timings in seconds for "Direct":
Elapsed = 49.17
*/
/*======================================================================
| Supplement to the fifth edition of Oracle PL/SQL Programming by Steven
| Feuerstein with Bill Pribyl, Copyright (c) 1997-2009 O'Reilly Media, Inc.
| To submit corrections or find more code samples visit
| http://oreilly.com/catalog/9780596514464/
*/