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