For
example:
ALTER TABLE DEPT DROP FOREIGN KEY MGR_EMPNO;
ALTER TABLE EMPLOYEE DROP FOREIGN KEY DEPT;
In the preceding schema, we need to drop unenforced foreign
key constraints MGR_EMPNO and EMPLOYEE(DeptNo) referencing DEPT(DeptNo).
If there is no user specified role name for EMPLOYEE(DeptNo) to
DEPT(DeptNo), the default role name is the same as the primary table,
in other words, DEPT.