forked from dlee0113/oracle_pl_sql_programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaltind.tst
96 lines (84 loc) · 2.19 KB
/
altind.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
BEGIN
/* Show the conflict resolution logic with a tiny hash table
whose starting value is right at the end of the valid range. */
altind.trc (2**31-5, 20);
altind.loadcache;
altind.notrc;
altind.loadcache;
END;
/
CREATE OR REPLACE PROCEDURE altind_compare (
counter IN INTEGER,
ename_in IN VARCHAR2
)
/* Compare performance of hash scan and full table scan. */
IS
emprec employee%ROWTYPE;
BEGIN
sf_timer.set_factor (counter);
sf_timer.start_timer;
FOR i IN 1 .. counter
LOOP
emprec := altind.onerow (ename_in, TRUE);
IF i = 1
THEN
do.pl /* do.pkg */ (emprec.employee_id);
END IF;
END LOOP;
sf_timer.show_elapsed_time ('Hash');
sf_timer.set_factor (counter);
sf_timer.start_timer;
FOR i IN 1 .. counter
LOOP
emprec := altind.onerow (ename_in, FALSE);
IF i = 1
THEN
do.pl /* do.pkg */ (emprec.employee_id);
END IF;
END LOOP;
sf_timer.show_elapsed_time ('Full index-by scan');
sf_timer.set_factor (counter);
sf_timer.start_timer;
FOR i IN 1 .. counter
LOOP
emprec := altind.onerow_dbind (ename_in);
IF i = 1
THEN
do.pl /* do.pkg */ (emprec.employee_id);
END IF;
END LOOP;
sf_timer.show_elapsed_time ('Indexed DB lookup');
sf_timer.set_factor (counter);
sf_timer.start_timer;
FOR i IN 1 .. counter
LOOP
emprec := altind.onerow_dbnoind (ename_in);
IF i = 1
THEN
do.pl /* do.pkg */ (emprec.employee_id);
END IF;
END LOOP;
sf_timer.show_elapsed_time ('Non-indexed DB lookup');
END;
/
BEGIN
do.pl /* do.pkg */ ('Testing for SMITH');
altind_compare (1000, 'SMITH');
END;
/
BEGIN
do.pl /* do.pkg */ ('Testing for WEST');
altind_compare (1000, 'WEST');
END;
/
BEGIN
do.pl /* do.pkg */ ('Testing for MURRAY');
altind_compare (1000, 'MURRAY');
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/
*/