forked from dlee0113/oracle_pl_sql_programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10g_forall.sql
140 lines (112 loc) · 3.83 KB
/
10g_forall.sql
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
DROP TABLE favorites;
CREATE TABLE favorites (
flavor VARCHAR2(100),
NAME VARCHAR2(100));
DECLARE
TYPE favorites_tt IS TABLE OF favorites%ROWTYPE
INDEX BY PLS_INTEGER;
TYPE guide_tt IS TABLE OF PLS_INTEGER
INDEX BY PLS_INTEGER;
family favorites_tt;
guide guide_tt;
l_count INTEGER;
PROCEDURE cleanup IS
BEGIN
DELETE FROM favorites;
guide.DELETE;
END;
BEGIN
family (1).flavor := 'CHOCOLATE';
family (1).NAME := 'VEVA';
family (25).flavor := 'STRAWBERRY';
family (25).NAME := 'STEVEN';
family (500).flavor := 'VANILLA';
family (500).NAME := 'CHRIS';
family (5000).flavor := 'ROCKY ROAD';
family (5000).NAME := 'ELI';
family (5001).flavor := 'PINEAPPLE';
family (5001).NAME := 'MOSHE';
family (5002).flavor := 'EVERYTHING';
family (5002).NAME := 'MICA';
-- Just a subset of the family favorites...
guide (1) := 1;
guide (5000) := 2;
FORALL indx IN indices OF guide -- bewteen my_list.first .. my_first.last
INSERT INTO favorites
VALUES family (indx);
SELECT COUNT(*) into l_count FROM favorites;
DBMS_OUTPUT.PUT_LINE (l_count);
cleanup;
-- Insert nothing at all: no error raised!
FORALL indx IN indices of guide -- bewteen my_list.first .. my_first.last
INSERT INTO favorites
VALUES family (indx);
SELECT COUNT(*) into l_count FROM favorites;
DBMS_OUTPUT.PUT_LINE (l_count);
cleanup;
-- Use BETWEEN clause
guide (25) := 1;
guide (500) := 1;
guide (5000) := 1;
FORALL indx IN indices of guide BETWEEN guide.FIRST AND LEAST (guide.LAST, 500)
INSERT INTO favorites
VALUES family (indx);
SELECT COUNT(*) into l_count FROM favorites;
DBMS_OUTPUT.PUT_LINE (l_count);
cleanup;
-- Use BETWEEN clause with undefined row.
-- Does NOT raise NO_DATA_FOUND. Instead:
-- ORA-22160: element at index [7589] does not exist
-- But rows before that are inserted. Don't forget about SAVE EXCEPTIONS
guide (25) := 1;
guide (417) := 1; -- Undefined row
guide (500) := 1;
guide (5000) := 1;
BEGIN
FORALL indx IN indices of guide BETWEEN guide.FIRST AND LEAST (guide.LAST, 500)
INSERT INTO favorites
VALUES family (indx);
EXCEPTION
WHEN OTHERS
THEN
DBMS_OUTPUT.PUT_LINE (SQLERRM);
END;
SELECT COUNT(*) into l_count FROM favorites;
DBMS_OUTPUT.PUT_LINE (l_count);
cleanup;
-- Use VALUES OF
guide (-1000) := 1;
guide (1000) := 5001;
guide (10000) := 5002;
FORALL indx IN VALUES OF guide
INSERT INTO favorites
VALUES family (indx);
SELECT COUNT(*) into l_count FROM favorites;
DBMS_OUTPUT.PUT_LINE (l_count);
cleanup;
-- Use VALUES OF with undefined row
-- Does NOT raise NO_DATA_FOUND. Instead:
-- ORA-22160: element at index [7589] does not exist
-- But rows before that are inserted. Don't forget about SAVE EXCEPTIONS
guide (-1000) := 1;
guide (1000) := 7589;
guide (10000) := 5001;
BEGIN
FORALL indx IN VALUES OF guide
INSERT INTO favorites
VALUES family (indx);
EXCEPTION
WHEN OTHERS
THEN
DBMS_OUTPUT.PUT_LINE (SQLERRM);
END;
SELECT COUNT(*) into l_count FROM favorites;
DBMS_OUTPUT.PUT_LINE (l_count);
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/
*/