How can I find which tables reference a given table in Oracle SQL Developer?
No. There is no such option available from Oracle SQL Developer. You have to execute a query by hand or use other tool (For instance PLSQL Developer has such option). The following SQL is that one used by PLSQL Developer: select table_name, constraint_name, status, owner from all_constraints where r_owner = :r_owner and constraint_type=”R” and r_constraint_name … Read more