List of DBA Views
SELECT * FROM DICT WHERE TABLE_NAME LIKE 'DBA\_%' ESCAPE '\'
List of Dynamic Performance Views
(these are only synonyms for SYS.GV_$)
SELECT * FROM DICT WHERE TABLE_NAME LIKE 'V$%'
List of Global Dynamic Performance Views used in RAC
(these are only synonyms for SYS.GV_$)
SELECT * FROM DICT WHERE TABLE_NAME LIKE 'GV$%'
Note: The content of V$ and GV$ views is always reset during instance restart.
If you want to grant privileges on any of the v$ or gv$ you need to grant to the SYS.V_$ or SYS.GV_$.
Eg.:
GRANT SELECT ON SYS.V_$SESSION TO SOME_USER;
For description of specific view and or columns do this:
Leave a reply