返回顶部
首页 > 资讯 > 数据库 >ORACLE视图DBA_HIST_UNDOSTAT
  • 131
分享到

ORACLE视图DBA_HIST_UNDOSTAT

2024-04-02 19:04:59 131人浏览 独家记忆
摘要

Http://docs.oracle.com/cd/E11882_01/server.112/e40402/statviews_4069.htmDBA_HIST_UNDOSTAT 视图DBA_HIST_UN

Http://docs.oracle.com/cd/E11882_01/server.112/e40402/statviews_4069.htm

DBA_HIST_UNDOSTAT 视图

DBA_HIST_UNDOSTAT 显示Oracle UNDO表空间的历史的统计数据直方图,实例中的这些数据包括UNDO消耗、事务一致和查询执行的时长,该视图包含V$UNDOSTAT的快照。

ColumnDatatypeNULLDescription
BEGIN_TIMEDATENOT NULLIdentifies the beginning of the time interval
END_TIMEDATENOT NULLIdentifies the end of the time interval
DBIDNUMBERNOT NULLDatabase ID for the snapshot
INSTANCE_NUMBERNUMBERNOT NULLInstance number for the snapshot
SNAP_IDNUMBERNOT NULLUnique snapshot ID
UNDOTSNNUMBERNOT NULLRepresents the last active undo tablespace in the duration of time. The tablespace ID of the active undo tablespace is returned in this column. If more than one undo tablespace was active in that period, the active undo tablespace that was active at the end of the period is reported.
UNDOBLKSNUMBERRepresents the total number of undo blocks consumed. You can use this column to obtain the consumption rate of undo blocks, and thereby estimate the size of the undo tablespace needed to handle the workload on your system.
TXNCOUNTNUMBERIdentifies the total number of transactions executed within the period
MAXQUERYLENNUMBERIdentifies the length of the longest query (in number of seconds) executed in the instance during the period. You can use this statistic to estimate the proper setting of the UNDO_RETENTION initialization parameter. The length of a query is measured from the cursor open time to the last fetch/execute time of the cursor. Only the length of those cursors that have been fetched/executed during the period are reflected in the view.
MAXQUERYsqlIDVARCHAR2(13)SQL identifier of the longest running SQL statement in the period
MAXCONCURRENCYNUMBERIdentifies the highest number of transactions executed concurrently within the period
UNXPSTEALCNTNUMBERNumber of attempts to obtain undo space by stealing unexpired extents from other transactions
UNXPBLKRELCNTNUMBERNumber of unexpired blocks removed from certain undo segments so they can be used by other transactions
UNXPBLKREUCNTNUMBERNumber of unexpired undo blocks reused by transactions
EXPSTEALCNTNUMBERNumber of attempts to steal expired undo blocks from other undo segments
EXPBLKRELCNTNUMBERNumber of expired undo blocks stolen from other undo segments
EXPBLKREUCNTNUMBERNumber of expired undo blocks reused within the same undo segments
SSOLDERRCNTNUMBERIdentifies the number of times the error ORA-01555 occurred. You can use this statistic to decide whether or not the UNDO_RETENTION initialization parameter is set properly given the size of the undo tablespace. Increasing the value of UNDO_RETENTION can reduce the occurrence of this error.
NOSPACEERRCNTNUMBERIdentifies the number of times space was requested in the undo tablespace and there was no free space available. That is, all of the space in the undo tablespace was in use by active transactions. The corrective action is to add more space to the undo tablespace.
ACTIVEBLKSNUMBERTotal number of blocks in the active extents of the undo tablespace for the instance at the sampled time in the period
UNEXPIREDBLKSNUMBERTotal number of blocks in the unexpired extents of the undo tablespace for the instance at the sampled time in the period
EXPIREDBLKSNUMBERTotal number of blocks in the expired extents of the undo tablespace for the instance at the sampled time in the period
TUNED_UNDORETENTIONNUMBERSystem tuned value indicating the period for which undo is being retained

默认情况下V$UNDOSTAT中的信息每10分钟增加一条记录,V$UNDOSTAT一般仅保留576条最近的UNDO记录(相当于4天的UNDO信息,10g 之前保存1008条,相当于7天的信息量),超过的该时间的信息则被保存在DBA_HIST_UNDOSTAT视图中。该统计仅在UNDO自动管理的模式下有效。

SQL> show parameter undo_management
NAME                         TYPE        VALUE
---------------------------- ----------- ------------------------------
undo_management              string      AUTO

您可能感兴趣的文档:

--结束END--

本文标题: ORACLE视图DBA_HIST_UNDOSTAT

本文链接: https://lsjlt.com/news/42003.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • ORACLE视图DBA_HIST_UNDOSTAT
    http://docs.oracle.com/cd/E11882_01/server.112/e40402/statviews_4069.htmDBA_HIST_UNDOSTAT 视图DBA_HIST_UN...
    99+
    2024-04-02
  • Oracle 11g R2 视图
    视图是一个虚表,不占用物理空间,因为视图本身的定义语句存储在数据字典里。视图中的数据是从一个或多个实际的表中获得。 物化视图:也成实体化视图,含有实际数据,占用存储空间,在数据仓库中经常应用物化视图 创建视...
    99+
    2024-04-02
  • Oracle 物化视图
    一、物化视图概述Oracle的物化视图是包括一个查询结果的数据库对像,它是远程数据的的本地副本,或者用来生成基于数据表求和的汇总表。物化视图存储基于远程表的数据,也可以称为快照。物化视图可以用于预先计算并保...
    99+
    2024-04-02
  • Oracle视图详解
    Oracle视图是一种虚拟的表,它是由一个或多个表或视图的查询结果组成的。视图并不实际存储数据,而是根据查询定义的规则,从基表或其他...
    99+
    2024-04-09
    oracle
  • Oracle系列:(22)视图
    什么是视图【View】 (1)视图是一种虚表 (2)视图建立在已有表的基础上, 视图赖以建立的这些表称为基表(3)向视图提供数据内容的语句为 SELECT 语句,可以将视图理解为...
    99+
    2024-04-02
  • Oracle中V$视图和DBA_视图有什么区别
    在Oracle数据库中,V$视图和DBA_视图都是用来访问数据库的动态性能和配置信息的视图,但两者有一些区别: V$视图(动态性...
    99+
    2024-04-19
    Oracle
  • ORACLE系统表和视图
    1.系统表ORACLE数据库的系统参数都存储在数据库中,可以通过SQLPLUS,以用户SYSYTEM进行查询。几个重要的表或者视图如下:v$controlfile:控制文件的信息;v$datafile:数据...
    99+
    2024-04-02
  • Oracle 物化视图日志
    一、物化视图日志是什么oracle 的物化视图的快速刷新要求必须建立物化视图日志,通过物化视图日志可以实现增量刷新功能。官方文档给出的对物化视图日志的释义:A materialized view log i...
    99+
    2024-04-02
  • (转)Oracle中常用视图
    -----------DBA----------------  DBA_2PC_NEIGHBORS 包含待处理事务进入连接和退出连接信息。  DBA_2PC_PENDING 包含等待恢复...
    99+
    2024-04-02
  • oracle如何创建视图
    要创建一个视图,可以使用 CREATE VIEW 语句。以下是一个创建视图的示例:```CREATE VIEW view_name ...
    99+
    2023-08-08
    oracle
  • oracle中的视图详解
    视图是Oracle数据库中的一种虚拟表,它是由一个或多个表的列组成的查询结果集。视图可以用来简化复杂的查询、隐藏表的细节、保护数据以...
    99+
    2023-08-14
    oracle
  • oracle中视图的作用
    oracle 中的视图是一种虚拟表,提供对数据的不同视角。其主要作用包括:数据抽象、数据安全、数据转换、数据整合和性能优化。优点包括:不占用存储空间、保持数据一致性、提高性能、增强安全性...
    99+
    2024-05-09
    oracle 数据访问 敏感数据
  • oracle怎么创建视图
    oracle 中创建视图的步骤:1. 定义视图:使用 create view 语句指定视图名称、源表和选择列表;2. 示例:使用 employeeview 视图包含 employees ...
    99+
    2024-05-21
    oracle
  • oracle视图如何加密
    oracle 视图加密允许您加密视图中的数据,从而增强敏感信息安全性。步骤包括:1) 创建主加密密钥 (mek);2) 创建加密视图,指定要加密的视图和 mek;3) 授权用户访问加密视...
    99+
    2024-06-12
    oracle 敏感数据
  • oracle常用的动态视图
    1)v$lock 给出了锁的信息,如type字段, user type locks有3种:TM,TX,UL,system type locks有多种,常见的有:MR,RT,XR,TS等。我们只关心TM,TX...
    99+
    2024-04-02
  • Oracle物化视图怎么用
    这篇文章主要介绍了Oracle物化视图怎么用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。 Oracle物化视图的用法与总结 物...
    99+
    2024-04-02
  • Oracle中视图有什么用
    这篇文章主要为大家展示了“Oracle中视图有什么用”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Oracle中视图有什么用”这篇文章吧。1.什么是视图?&nb...
    99+
    2024-04-02
  • oracle视图表如何修改
    要修改Oracle中的视图表,可以使用ALTER VIEW语句来修改视图的定义。下面是修改视图的步骤:1. 使用ALTER VIEW...
    99+
    2023-08-08
    oracle
  • Oracle中的视图是什么
    在Oracle数据库中,视图是一种虚拟表,它是由一个或多个表的列组成的查询结果集。视图可以像表一样被查询,但实际上并不存储数据,而是...
    99+
    2024-04-09
    Oracle
  • Oracle普通视图和物化视图的区别有哪些
    本篇内容主要讲解“Oracle普通视图和物化视图的区别有哪些”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Oracle普通视图和物化视图的区别有哪些”吧!物化视...
    99+
    2024-04-02
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作