Home > database >  Oracle wants to know whether a table in a view or storage in the process of use
Oracle wants to know whether a table in a view or storage in the process of use

Time:11-24

Now want to replace a table, the code has been dealt with, global search database, how to find with dbeaver client

CodePudding user response:

 select name, type, referenced_owner, referenced_name, 
Referenced_type
The from user_dependencies
Where referenced_name='table name
  • Related