Reputation: 1551
Given an Oracle table, how can I found out what depends on that table? e.g. Which Views, Functions, Stored Procs, etc.
One would think it would be easy given Oracle SQL Developer or Aqua Data Studio, but they don't contain that feature. How frustrating!
Upvotes: 0
Views: 1029
Reputation: 615
In Aqua Data Studio, connect to your Oracle Server and Expand your Tables node under the Schema Browser. Pick your table, right click and select Table Properties. Navigate to the Dependencies tab and you can see all the dependencies.
Upvotes: 1