否。OracleSQL 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,它表示“ 过程,程序包,函数,程序包主体和触发器之间的依赖关系,包括当前用户可以访问的触发器”在没有任何数据库链接的情况下创建的视图。” 。然后,此报告对您的问题毫无价值。