How to track which tables/views/etc depends from a table, in Oracle

末鹿安然 提交于 2019-12-10 19:08:45

问题


How to know which objects (tables/views/etc) uses a certain table?

I have to replace my table PRICE. So, is there something like?

select system.dependencies from PRICE

回答1:


SELECT NAME
from user_dependencies
where referenced_name = 'PRICE'


来源:https://stackoverflow.com/questions/3737696/how-to-track-which-tables-views-etc-depends-from-a-table-in-oracle

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!