Oracle常用动态视图

1.关于数据库/实例的动态性能视图

v$database :displays information about the database from the control file.

v$instance :displays the state of the current instance(当前实例的状况)

v$option :displays oracle database options and features(数据库的选项和特性)

:option must be separately licensed(选项单独认证设置)

:whereas features come with the product and are enabled based on

the product that is running(产品特性的发挥也是要产品运行才能体现)

v$parameter :displays information about the initialization parameter that

:are currently in effect for the session.A new session inherits

:parameter values from the instance-wide values displayed by the

:v$system_parameter view.

v$backup    :display the backup status of all online datafiles.(所有在线数据文件的备份情况)

v$px_process_sysstat :contains information about the sessions running parallel execution

(包含并行执行会话的信息)

v$process :displays information about the currently active processes(活动进程的信息)

v$waitstat: displays block contention statistics.this table is only updated when timed

:statistics are enabled(显示热块竞争的统计,当时间统计参数启动时,这个表只能更新)

v$system_event :total waits for an event(事件的总等待时间)

2.关于磁盘文件的视图

v$datafile :datafile information from the control file

v$filestat :displays the number of physical reads and writes done and the total number of

:single-block and multiblock I/Os done at file level(在文件级别显示物理读写和io信息)

v$log    :displays log file information from the control file

v$log_history :log history information from the control file

v$dbfile :all datafiles making up the database

v$tempfile :tempfile information

v$tempstat :file read/write statistics(文件读写的统计)

v$segment_statistics :segment-level statistics

3.contention竞争的视图

v$lock :lists the locks currently held by the oracle database and outstanding requests for

: a lock or latch (正在使用的锁和过多的请求对锁)

v$rollname :lists the names of all online rollback segments(在线回滚段的信息)

v$rollstat :contains rollback segment statistics(回滚段的统计情况)

v$waitstat :block contention statistics(块争用统计)

v$latch :aggregate latch statistics (闩锁的总和统计)

4.memory 的视图

v$buffer_pool_statistics :statistics about all buffer pools available for the instance

:(实例所有可用的缓存池的统计)

v$db_object_cache:database objects thatare cached inthe library cache(被缓存在库缓存区的对象)

v$librarycache :contains statistics about library cache performance and activity

(库缓存区的性能和活动的统计信息)

v$rowcache :statistics for data dictionary activity(数据字典活动信息统计)

v$sysstat:system statistics

v$sgastat :detailed information on the system global area(sga)

5.用户/会话的视图

v$lock :lists the locks currently held by the oracle database and outstanding requests for

: a lock or latch (正在使用的锁和过多的请求对锁)

v$open_cursor :list cursors that each user session currently has opened and parsed,or cached

(当前会话打开的游标列表)

v$process :displays information about the currently active processes(活动进程的信息)

v$transaction :lists the active transaction in the system (列出系统活动的事物)

v$px_sesstat :parallel execution(px),contains information about the sessions running

(正在执行会话的并行执行情况统计)

v$px_session :parallel execution(px),contains information about the sessions running

v$sesstat :user session statistics

v$session_event :on waits for an event by a session(会话等待事件)

v$sort_usage :在11g好像就没有了

v$sort_segment:displays information about every sort segment in given instance

显示实例中给出的每个回滚段的信息。

v$session_wait :current or last wait for each session(当前或上次的等待信息)

v$session

v$session_object_cache :object cache statistics for the current user session on the local

:server(instance)

时间: 2024-11-08 15:23:17

Oracle常用动态视图的相关文章

oracle动态视图v$,v_$,gv$,gv_$与x$之间的关系

前言:在oracle运维的过程中,经常会使用到一些以V$开头的动态视图,比如V$session, 有一次偶然看到有人用V_$session, 初以为别人写错了,没想到desc v_$session以后能看到和v$session一样的结构,再以后又发现以gv$开头的视图等等.趁这次在一台Linux系统上装oracle的机会,终于弄清楚了这些动态视图与相应表之间的关系.这些都是由oracle自己管理的数据结构,得从v$fixed_table入手:[[email protected] admin]$

Oracle 参数文件、v$parameter动态视图、OMF特性、启动

PFILE与SPFILE 1.  含义:PFILE是parameterfile的缩写,SPFILE是server parameter file的缩写,通过全称的字面含义,我们可以得到pfile和spfile都是oracle提供的参数文件,里面写着各种参数的初始值,比如Database Buffer的值为196M等,文件后缀名都是.ora: 2.  区别:spfile是oracle9i release2引进的新事物,在这之前oracle中只有pfile的概念.Pfile是一种静态参数文件,可以通过

oracle常用的数据字典

一.oracle数据字典主要由以下几种视图构成:1.user视图以user_为前缀,用来记录用户对象的信息 2.all视图以all_为前缀,用来记录用户对象的信息及被授权访问的对象信息 3.dba视图以dba_为前缀,用来记录数据库实例的所有对象的信息 4.v$视图以v$为前缀,用来记录与数据库活动相关的性能统计动态信息 5.gv$视图以gv$为前缀,用来记录分布式环境下所有实例的动态信息 二.oracle常用的数据字典1.基本数据字典字典名称            说明dba_tables  

oracle常用系统表

Oracle查询用户下的所有表 select * from all_tab_comments – 查询所有用户的表,视图等 select * from user_tab_comments – 查询本用户的表,视图等 select * from all_col_comments –查询所有用户的表的列名和注释. select * from user_col_comments – 查询本用户的表的列名和注释 select * from all_tab_columns –查询所有用户的表的列名等信息(

oracle常用命令【转载】

oracle常用命令 一.Oracle数据库实例.用户.目录及session会话查看: 1.ORACLE SID查看设置 查看SID.用户名 $ env|grep SID .select * from v$instance.select instance_name,host_name from v$instance; 查看数据库所有用户及用户状态:SQL> select usernames,account_status from dba_users; 设置SID $ export ORACLE_

oracle 常用查询

oracle查询表空间的使用情况 SELECT a.tablespace_name "表空间名", total "表空间大小", free "表空间剩余大小", (total - free) "表空间使用大小", total / (1024 * 1024 * 1024) "表空间大小(G)", free / (1024 * 1024 * 1024) "表空间剩余大小(G)", (tota

(转)oracle常用的数据字典

一.oracle数据字典主要由以下几种视图构成: 1.user视图 以user_为前缀,用来记录用户对象的信息 2.all视图 以all_为前缀,用来记录用户对象的信息及被授权访问的对象信息 3.dba视图 以dba_为前缀,用来记录数据库实例的所有对象的信息 4.v$视图 以v$为前缀,用来记录与数据库活动相关的性能统计动态信息 5.gv$视图 以gv$为前缀,用来记录分布式环境下所有实例的动态信息 二.oracle常用的数据字典 1.基本数据字典 字典名称 说明 dba_tables 所有用

oracle常用数据字典

----常用数据字典 USER_ 记录用户对象的信息,如user_tables包含用户创建的所有表:                                 user_views,user_constraints等; ALL_ 记录用户对象的信息及被授权访问的对象信息: DBA_ 记录数据库实例的所有对象的信息,如DBA_USERS包含数据库实例中 所有用户的信息,DBA的信息包含user和all的信息: V$ 当前实例的动态视图,包含系统管理和优化使用的视图: GV_ 分布环境下所有实

oracle 常用的系统表查询

(转自:http://blog.csdn.net/marshalchen/article/details/6552103) select * from user_tab_cols where column_name=upper('xxxxx');查询哪些表中有某一列 select status from user_objects where object_name=upper('f_get_multicountry_from_code')  查询过程或函数是否编译完成 alter procedu