天天看點

級聯truncate

12c之前的版本中,在子表引用一個主表以及子表存在記錄的情況下,是不提供截斷此主表操作的。而在 12c 中的帶有 CASCADE 操作的TRUNCATE TABLE 可以截斷主表中的記錄,并自動對子表進行遞歸截斷,并作為 DELETE ON CASCADE 服從外鍵引用。由于這是應用到所有子表的,是以對遞歸層級的數量是沒有 CAP 的,可以是孫子表或是重孫子表等等。這一增強擯棄了要在截斷一個主表之前先截斷所有子表記錄的前提。新的 CASCADE 語句同樣也可以應用到表分區和子表分區等。

SQL> create table parent(id number primary key);

Table created.

SQL> create table child(cid number primary key,id number);

SQL> insert into parent values(1);

1 row created.

SQL> insert into parent values(2);

SQL> insert into child values(1,1);

SQL> insert into child values(2,1);

SQL> insert into child values(3,2);

SQL> commit;

Commit complete.

SQL> select a.id,b.cid,b.id from parent a, child b where a.id=b.id;

--添加限制,不附上 on delete cascade

SQL> alter table child add constraint fk_parent_child foreign key(id) references parent(id);

Table altered.

SQL> truncate table parent cascade;

truncate table parent cascade

*

ERROR at line 1:

ORA-14705: unique or primary keys referenced by enabled foreign keys in table

"HR"."CHILD"

SQL> col CONSTRAINT_NAME for a25;

SQL> col TABLE_NAME for a25;

SQL> col COLUMN_NAME for a25;

SQL> select CONSTRAINT_NAME,TABLE_NAME, COLUMN_NAME from user_cons_columns where TABLE_NAME='CHILD';

CONSTRAINT_NAME TABLE_NAME COLUMN_NAME

SYS_C0010458 CHILD CID

FK_PARENT_CHILD CHILD ID

-- 删除并添加限制,并附上 on delete cascade

SQL> alter table child drop constraint FK_PARENT_CHILD;

SQL> alter table child add constraint fk2_parent_child foreign key(id) references parent(id) on delete cascade;

Table truncated.

no rows selected

     本文轉自whshurk 51CTO部落格,原文連結:http://blog.51cto.com/shurk/2056672,如需轉載請自行聯系原作者