<<Back to DB Administration Main Page
Find Out The Base Table of a Views
You can find out the base table/tables of a view using query belowSQL> select referenced_owner, referenced_name, referenced_type
from dba_dependencies
where owner = 'SYS' and name = 'ALL_OBJECTS' and type = 'VIEW';
Comments
Post a Comment