Link to home
Start Free TrialLog in
Avatar of itorbust
itorbust

asked on

Oracle 9i: Is there any way to list the v$ views and all columns.

Hello Experts,

I'm trying to learn more Oracle my investigating the information found in the "DBA" views and "V$" views.  Using "DBA_COL_COMMENTS" view I can get the table_name, the column name, and a comment about the column -- for "DBA" views.  Is there any way I can obtain this information for "V$" views?

Thanks for your help/time.
Avatar of andertst
andertst
Flag of United States of America image

select owner, view_name
from dba_views
where view_name like 'V%';
You will notice that they mostly start with v_$.  The v$ are synonyms.

HTH
Stephen

ASKER CERTIFIED SOLUTION
Avatar of morphman
morphman

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial