关于 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';