分类: Oracle
2015-01-13 16:26:13
BEGIN_TIME | DATE | Identifies the beginning of the time interval 时间间隔开始时间。 |
END_TIME | DATE | Identifies the end of the time interval 时间间隔结束时间。 |
UNDOTSN | NUMBER | Represents 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. 时间间隔活动的UNDO表空间个数,返回的是活动UNDO表空间的ID号,如果大于1个活动的UNDO表空间,将报告在时间间隔最后被激活的UNDO表空间ID号。 |
UNDOBLKS | NUMBER | Represents 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. 表示总共消费的UNDO块数,可以使用这个字段获得undo块的消费比率,由此来估算处理系统负载需要的UNDO表空间大小。 |
TXNCOUNT | NUMBER | Identifies the total number of transactions executed within the period 在这个时期内总共执行的事务数。 |
MAXQUERYLEN | NUMBER | Identifies the length of the longest query (in 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. 在这个时期该实例执行的最长查询时间(单位:秒),可以使用这个统计信息估算UNDO_RETENTION初始化参数的大概值。查询的时间精确到从游标打开到最后提取/执行时间。只有当这些游标的查询时间在这个时期被提取/执行才能被反映到该视图。 |
MAXQUERYID | VARCHAR2(13) | SQL identifier of the longest running SQL statement in the period 在这个时期运行最长时间的SQL语句标识符。 |
MAXCONCURRENCY | NUMBER | Identifies the highest number of transactions executed concurrently within the period 在这个时期并行执行的最大事务数。 |
UNXPSTEALCNT | NUMBER | Number of attempts to obtain undo space by stealing unexpired extents from other transactions 尝试从其他事务通过偷盗的方式获得的未过期的undo空间区间数。 |
UNXPBLKRELCNT | NUMBER | Number of unexpired blocks removed from certain undo segments so they can be used by other transactions 从某些UNDO段移除未过期的块数,他们被用于其它事务。 |
UNXPBLKREUCNT | NUMBER | Number of unexpired undo blocks reused by transactions 事务重新使用未过期的undo块数。 |
EXPSTEALCNT | NUMBER | Number of attempts to steal expired undo blocks from other undo segments 尝试从其他UNDO段偷盗过期的UNDO块数。 |
EXPBLKRELCNT | NUMBER | Number of expired undo blocks stolen from other undo segments 从其他UNDO段偷盗的过期的UNDO块数。 |
EXPBLKREUCNT | NUMBER | Number of expired undo blocks reused within the same undo segments 在相同UNDO段重新使用的过期的UNDO块数。 |
SSOLDERRCNT | NUMBER | Identifies 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 ofUNDO_RETENTION can reduce the occurrence of this error. 标识ORA-01555错误发生的次数,可以使用这个统计信息决定针对给定的UNDO表空间是否设置UNDO_RETENTION初始化参数。增加UNDO_RETENTION的值可以减少这个错误的发生。 |
NOSPACEERRCNT | NUMBER | Identifies 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. 在UNDO表空间没有自由空间活动的情况下,空间请求的次数,所有UNDO表空间的空间被活动的事务使用,这需要添加更多的空间到UNDO表空间。 |
ACTIVEBLKS | NUMBER | Total number of blocks in the active extents of the undo tablespace for the instance at the sampled time in the period 在时间间隔,针对该实例,UNDO表空间活动区间的块个数。 |
UNEXPIREDBLKS | NUMBER | Total number of blocks in the unexpired extents of the undo tablespace for the instance at the sampled time in the period 在时间间隔,针对该实例,UNDO表空间未过期的块个数。 |
EXPIREDBLKS | NUMBER | Total number of blocks in the expired extents of the undo tablespace for the instance at the sampled time in the period 在时间间隔,针对该实例,UNDO表空间过期区间的块个数。 |
TUNED_UNDORETENTION | NUMBER | Amount of time (in seconds) for which undo will not be recycled from the time it was committed. At any point in time, the latest value of TUNED_UNDORETENTIONis used to determine whether data committed at a particular time in the past can be recycled. 提交之后UNDO不能被回收的总时间(单位:秒)。 |