Hi recently I am facing a strange situation while performing delete operations.
When I delete some rows from parent table: employees; (1) I got the error: ORA-02292: integrity constraint (HR.DEPT_MGR_FK) violated - child record found.
And I tried to delete corresponding rows from the child table: departments (so that I can delete rows from employees) (2) again I got the error: ORA-02292: integrity constraint (HR.EMP_DEPT_FK) violated - child record found
Now how to perform the delete operation, when there is a circular reference like this?