-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path11g_access_denied_1.sql
45 lines (39 loc) · 1.29 KB
/
11g_access_denied_1.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
DECLARE
l_cursor NUMBER;
l_feedback NUMBER;
PROCEDURE set_salary
IS
BEGIN
DBMS_OUTPUT.put_line ('Set salary = salary...');
l_cursor := DBMS_SQL.open_cursor ();
DBMS_SQL.parse (l_cursor
, 'update employees set salary = salary'
, DBMS_SQL.native
);
l_feedback := DBMS_SQL.EXECUTE (l_cursor);
DBMS_OUTPUT.put_line (' Rows modified = ' || l_feedback);
DBMS_SQL.close_cursor (l_cursor);
END set_salary;
BEGIN
set_salary ();
BEGIN
l_feedback := DBMS_SQL.EXECUTE (1010101010);
EXCEPTION
WHEN OTHERS
THEN
DBMS_OUTPUT.put_line (DBMS_UTILITY.format_error_stack ());
DBMS_OUTPUT.put_line (DBMS_UTILITY.format_error_backtrace ());
END;
set_salary ();
EXCEPTION
WHEN OTHERS
THEN
DBMS_OUTPUT.put_line (DBMS_UTILITY.format_error_stack ());
DBMS_OUTPUT.put_line (DBMS_UTILITY.format_error_backtrace ());
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/
*/