关于 Oracle DB CONSTRAINT约束的一些SQL ORA-02292: integrity constraint violated

ALTER TABLE table_name
DISABLE CONSTRAINT constraint_name;
select * from all_constraints
     where owner = 'SCOTT'
     and constraint_name = 'SYS_C007539';
select*from all_constraints
     where owner ='SCOTT'and constraint_name ='SYS_C007539';
原文地址:https://www.cnblogs.com/johnsonshu/p/6186682.html