<<Back to DB Administration Main Page
How to Find the List of Tables in Database Having Virtual Columns
SQL> SELECT TABLE_NAME , OWNER FROM DBA_TAB_COLS WHEREVIRTUAL_COLUMN='YES';
To find The List of Table Having Virtual Columns Owned by a User
SQL> SELECT TABLE_NAME , OWNER FROM DBA_TAB_COLS
WHERE
VIRTUAL_COLUMN='YES'
and
OWNER='EMPLOYEES'
;
WHERE
VIRTUAL_COLUMN='YES'
and
OWNER='EMPLOYEES'
;
Comments
Post a Comment