-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path11g_result_cache_demo.sql
51 lines (45 loc) · 1.27 KB
/
11g_result_cache_demo.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
BEGIN
dbms_result_cache.INVALIDATE (USER, 'BETWNSTR');
END;
/
CREATE OR REPLACE FUNCTION betwnstr (
string_in IN VARCHAR2
, start_in IN INTEGER
, end_in IN INTEGER
)
RETURN VARCHAR2 RESULT_CACHE
IS
BEGIN
DBMS_OUTPUT.put_line ( 'betwnstr for '
|| string_in
|| '-'
|| start_in
|| '-'
|| end_in
);
RETURN (SUBSTR (string_in, start_in, end_in - start_in + 1));
END;
/
DECLARE
l_string employees.last_name%TYPE;
BEGIN
DBMS_RESULT_CACHE.INVALIDATE (USER, 'BETWNSTR');
FOR rec IN (SELECT *
FROM employees
WHERE ROWNUM < 11)
LOOP
l_string :=
CASE MOD (rec.employee_id, 2)
WHEN 0
THEN betwnstr (rec.last_name, 1, 5)
ELSE betwnstr ('FEUERSTEIN', 1, 5)
END;
END LOOP;
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/
*/