How to track which tables/views/etc depends from a table, in Oracle
问题 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