forked from dlee0113/oracle_pl_sql_programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauton_ddl.sql
42 lines (28 loc) · 867 Bytes
/
auton_ddl.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
REM Pass in -- for parameter to turn off autonomous transaction
REM Pass in /**/ to turn it on.
DROP TABLE temp_table;
CREATE OR REPLACE PROCEDURE execddl
AUTHID CURRENT_USER
IS
&1 PRAGMA AUTONOMOUS_TRANSACTION;
BEGIN
EXECUTE IMMEDIATE 'create table temp_table (d date)';
END;
/
DROP TABLE emp_temp;
CREATE TABLE emp_temp AS SELECT * FROM emp;
SELECT COUNT (*)
FROM emp_temp;
DELETE FROM emp_temp;
SELECT COUNT (*)
FROM emp_temp;
EXEC execddl
ROLLBACK ;
SELECT COUNT (*)
FROM emp_temp;
/*======================================================================
| 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/
*/