forked from dlee0113/oracle_pl_sql_programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path11g_emplu_compare.sp
66 lines (53 loc) · 1.51 KB
/
11g_emplu_compare.sp
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
55
56
57
58
59
60
61
62
63
64
65
66
CREATE OR REPLACE PROCEDURE test_emplu (
counter IN INTEGER
, employee_id_in IN employees.employee_id%TYPE := 138
)
/*
Compare performance of repeated querying of data to
caching in the PGA (packaged collection) and the
new Oracle 11g Result Cache.
Author: Steven Feuerstein
*/
IS
emprec employees%ROWTYPE;
PROCEDURE setup
IS
BEGIN
DBMS_SESSION.free_unused_user_memory ();
sf_timer.set_factor (counter);
sf_timer.start_timer;
END;
BEGIN
setup ();
DBMS_OUTPUT.put_line ('PGA before tests are run:');
my_session.MEMORY (TRUE, FALSE);
FOR i IN 1 .. counter
LOOP
emprec := emplu1.onerow (employee_id_in);
END LOOP;
sf_timer.show_elapsed_time ('Execute query each time');
my_session.MEMORY (TRUE, FALSE);
--
setup ();
FOR i IN 1 .. counter
LOOP
emprec := emplu11g.onerow (employee_id_in);
END LOOP;
sf_timer.show_elapsed_time ('Oracle 11g result cache');
my_session.MEMORY (TRUE, FALSE);
--
setup ();
FOR i IN 1 .. counter
LOOP
emprec := emplu2.onerow (employee_id_in);
END LOOP;
sf_timer.show_elapsed_time ('Cache table in PGA memory');
my_session.MEMORY (TRUE, FALSE);
END;
/
/*======================================================================
| 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/
*/