不可以。Oracle SQL Developer 没有提供这样的选项。
您必须手动执行查询或使用其他工具(例如PLSQL Developer有这样的选项)。以下 SQL 是 PLSQL Developer 使用的 SQL:
select table_name, constraint_name, status, owner
from all_constraints
where r_owner = :r_owner
and constraint_type = 'R'
and r_constraint_name in
(
select constraint_name from all_constraints
where constraint_type in ('P', 'U')
and table_name = :r_table_name
and owner = :r_owner
)
order by table_name, constraint_name
架构在哪里r_owner
,并且r_table_name
是您要查找参考的表。名称区分大小写
请注意,因为在 Oracle SQL Developer 的报告选项卡上有选项“所有表/依赖项”,这是来自ALL_DEPENDENCIES,它指的是“当前用户可访问的过程、包、函数、包主体和触发器之间的依赖关系,包括依赖关系在没有任何数据库链接的情况下创建的视图。” . 那么,这份报告对你的问题没有任何价值。