Oracle的提示“restrict_all_ref_cons”是什么意思?

时间:2012-06-12 13:40:17

标签: sql oracle

我在这样的声明中找到了它:

delete /*+ restrict_all_ref_cons  */ from table_1 where ...

任何人都可以提供有关提示正在做什么的一些信息吗?

数据库是Oracle数据库10.2.0.3.0。

1 个答案:

答案 0 :(得分:3)

提示禁用级联删除,因此从父表删除时不会从子表中删除子行。

参见此处的示例;

http://www.oracle-goldengate.info/archives/ogg-replication-for-delete-parent-table-with-fk-delete-cascade-option.html

create table s11 ( x int primary key );
create table s12 ( y int primary key, x references s11 on delete cascade );
insert into s11 values (1);
insert into s12 values (1, 1);
commit;
SQL> delete from s11;
1 row deleted.
SQL> select * from s12;
no rows selected <=========== when deleting parent row in s11, the child row in s12 is also deleted.

SQL> rollback;
Rollback complete.

SQL> delete /*+ RESTRICT_ALL_REF_CONS */ from s11;
1 row deleted.
SQL> select * from s12; <=========== with RESTRICT_ALL_REF_CONS hint, the child row will not be deleted.
Y X
---------- ----------
1 1
相关问题