V$COMPATIBILITY
Lists features in use by current instance that would preclude reverting to a previous release of the Oracle software. Since these are instance based some of these may disappear if the database is shut down normally.
V$COMPATSEG
Lists permanent features in the database that would preclude reverting to a previous release of Oracle
V$EVENT_NAME
Contains information on all possible wait events.
V$LICENSE
Contains a single row specifying the maximum numbers of concurrent and named users allowed, as well as the highwater marks.
V$MLS_PARAMETERS
Lists Trusted Oracle Parameters.
V$NLS_PARAMETERS
Contains the current values for each National Language Support parameters.
V$NLS_VALID_VALUES
Lists the valid values that each NLS parameter can take.
V$OPTION
Lists the Oracle Options installed
V$PARAMETER
Lists all INIT>ORA parameters, their values, if they are set to default and if they are modifiable through ALTER SYSTEM or ALTER SESSION.
V$STATNAME
Lists the name for each statistic stored in V$SYSSTAT and V$SESSSTAT.
V$SYSTEM_PARAMETER
Same as V$PARAMETER.
V$VERSION
Lists the current version numbers of the library components of the Oracle kernal.
DBA_BLOCKERS
Lists all sessions holding locks for whose release others are waiting.
DBA_LOCKS
All locks held or requested.
DBA_DDL_LOCKS
All DDL Locks.
DBA_DML_LOCKS
All DML Locks.
DBA_WAITERS
Lists all sessions that are waiting on a lock held by another session.
DBMS_LOCK_ALLOCATED
Shows which locks the current user has allocated.
These views provide information about the System Global Area:
V$CURRENT_BUCKET
Lists the number of increased buffer misses if the value of DB_BLOCK_BUFFERS were to be reduced. See INIT.ORA paramater DB_BLOCK_EXTEND.
V$RECENT_BUCKET
Lists the number of increades buffer hits if the value of DB_BLOCK_BUFFERS were to be increased. See the INIT.ORA parameter DB_BLOCK_LRU_EXTENDED_STATISTICS.
V$SGA
Contains information about the size, in bytes, of each of the various SGA components.
v$SGASTAT
Provides more detailed information about SGA utilization than V$SGA. Shows the breakdown of the SHARED_POOL and LARGE_POOL areas.
V$SHARED_POOL_RESERVED
Contains statistics about the SHARED_POOL area of the SGA. Some of the columns are meaningful only if the INIT.ORA parameter SHARED_POOL_RESERVED_SIZE has been set.
DBA_ROLLBACK_SEGMENTS
In addition DBA_SEGMENTS shows information about all segments including rollbacks.
DBA_UNDO_EXTENTS
Shows the commit time for each extent in the undo tablespace.
V$ROLLSTAT
To look for contention look at the "waits" column.
V$WAITSTAT
To look for contention look at the "buffer busy waits".
V$UNDOSTAT
Contains statistics for monitoring and tuning undo space. Use this view to help estimate the amount of undo space required for the current workload. Oracle also uses this information to help tune undo usage in the system. This view is available in both the automatic undo management and the manual undo management modes.
V$ROLLSTAT
For automatic undo management mode, information reflects behavior of the undo segments in the undo tablespace
DBA_RSRC_CONSUMER_GROUP_PRIVS
lists all resource consumer groups and the users and roles to which they have been granted. The equivalent user view lists all consumer groups the user has been granted to.
DBA_RSRC_CONSUMER_GROUPS
Lists all resource consumer groups that exist in the database.
DBA_RSRC_MANAGER_SYSTEM_PRIVS
lists all users and roles that have been granted Database Resource Manager system privileges.
DBA_RSRC_PLAN_DIRECTIVES
Lists all resource plan directives that exist in the database.
DBA_RSRC_PLANS
List all resource plans that exist in the database.
DBA_USERS
Contains information about all users of the database. Specifically, for the Database Resource Manager, it contains the initial resource consumer group for the user.
V$ACTIVE_SESS_POOL_MTH
Displays all available active session pool resource allocation methods.
V$PARALLEL_DEGREE_LIMIT_MTH
Displays all available parallel degree limit resource allocation methods.
V$QUEUEING
Displays all available queuing resource allocation methods.
V$RSRC_CONSUMER_GROUP
Displays information about active resource consumer groups. This view can be used for tuning.
V$RSRC_CONSUMER_GROUP_CPU_MTH
Displays all available CPU resource allocation methods for resource consumer groups.
V$RSRC_PLAN
Displays the names of all currently active resource plans.
V$RSRC_PLAN_CPU_MTH
Displays all available CPU resource allocation methods for resource plans.
V$SESSION
Lists session information for each current session. Specifically, lists the name of each current session's resource consumer group.
DBA_DATA_FILES
Lists all data files in use by the database.
DBA_EXTENTS
Lists every allocated extent for every segment.
DBA_FREE_SPACE
Lists every free extent. With DBA_EXTENTS should
account for all storage in DBA_DATA_FILES.
DBA_FREE_SPACE_COALESCED
Lists every extent that is the start of a block of free extents
DBA_ROLLBACK_SEGS
Lists all rollback segments
DBA_SEGMENTS
DBA_TABLESPACES
DBA_TS_QUOTAS
Shows the granted quota and used storage in tablespaces by user.
V$LOCK
Who has what locked. Row level locks are not stored here, they are kept within the data.
V$MYSTAT
Statistics for your session only. To allow a user access to this you must grant select on v_$statname and v_$mystat.
V$OPEN_CURSOR
This contains a list of every open cursor. They will often remain cached event after they have been closed.
V$SESSION
A row for every session open.
V$SESSION_WAIT
This is used to show all sessions currently waiting for something. Good place to start for databases that are hung or running slowly.
V$SESSTAT
Similar to MYSTAT but for all sessions.
V$SESS_IO
V$SQL, V$SQLAREA
All SQL that is parsed and stored in the shared pool. SQLAREA is an aggregate view, querying it can be quite expensive.
V$STATNAME
Shows the mapping from the statistic number to the statistic name, it is useful when joined with V$MYSTAT and V$SESSTAT to turn the statistic number into a readable name.
V$SYSSTAT
Where SESSTAT keeps statistics per session V$SYSSTAT keeps them for an instance. This is the data used by statspack.
V$SYSTEM_EVENT
This is to events what V$SYSSTAT is to statistics. It contains instance level wait event information.