Orcale 外键失效/生效

来源:互联网 发布:手机按键映射软件 编辑:程序博客网 时间:2024/06/05 22:38

–disable fk
SELECT ‘ALTER TABLE ‘|| table_name || ’ DISABLE CONSTRAINTS ’ || t.constraint_name ||’;’
FROM user_constraints t
WHERE t.constraint_type = ‘R’;

–enable fk
SELECT ‘ALTER TABLE ‘|| table_name || ’ ENABLE CONSTRAINTS ’ || t.constraint_name ||’;’
FROM user_constraints t
WHERE t.constraint_type = ‘R’;

0 0