博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【翻译自mos文章】v$undostat视图没有依照每10分钟进行更新,v$undostat仅仅有1行(one rows)...
阅读量:7240 次
发布时间:2019-06-29

本文共 1157 字,大约阅读时间需要 3 分钟。

v$undostat视图没有依照每10分钟进行更新,v$undostat仅仅有1行(one rows)

參考原文:

The V$UNDOSTAT view is not getting updated in every 10 minutes. (Doc ID 1206365.1)

适用于:

Oracle Server - Enterprise Edition - Version: 10.2.0.1 and later   [Release: 10.2 and later ]
Information in this document applies to any platform.

症状:
The V$UNDOSTAT view is not getting updated every 10 minutes.

SQL> select BEGIN_TIME,END_TIME, UNDOBLKS from v$undostat;

BEGIN_TIME END_TIME UNDOBLKS

-------------------- -------------------- ----------
21-aug-2010 03:48:44 07-sep-2010 11:02:14 75016989

以上查询仅仅返回1行。

变化:

SQL> sho parameter undo

NAME TYPE VALUE

------------------------------------ ----------- ------------------------------
_in_memory_undo boolean FALSE
_undo_autotune boolean FALSE     --->注意此行记录。
undo_management string AUTO
undo_retention integer 3600
undo_tablespace string UNDOTBS1

 

The parameter "_undo_autotune" has been set to FALSE.

This has disabled automatic undo tuning.

解决方式:

设置"_undo_autotune" parameter to TRUE:

SQL> alter system set "_undo_autotune"=true;

This disables the standard tracking of UNDO statistics in V$UNDOSTAT.  You can see only the one row of data as noted in this case.

 

转载地址:http://ckfbm.baihongyu.com/

你可能感兴趣的文章
python 08day--软件包的管理及ssh、samba、apache服务
查看>>
ThinkPPHP学习(一)生成图片验证码
查看>>
*Algs4-1.5.19动画-(感觉不正确)
查看>>
git 合并分支
查看>>
hdu 1098 Ignatius's puzz
查看>>
KFC ajax
查看>>
学长哈哈的店公告
查看>>
python 读取 xlsx
查看>>
ethereum/EIPs-1271 smart contract
查看>>
Football
查看>>
java中文件上传下载将file转为MultipartFile
查看>>
iOS----- Crash 分析(文二)-崩溃日志组成
查看>>
冲刺第三天
查看>>
测试oracle数据库连接
查看>>
PhoneGap打Android包报错
查看>>
nginx添加ssl证书
查看>>
Hadoop问题汇总
查看>>
P1042 乒乓球
查看>>
Linux下pipe使用注意事项
查看>>
知识巩固——性能优化之减少http请求
查看>>