博客
关于我
ORA-13516 AWR Operation failed Interval Setting is ZERO
阅读量:433 次
发布时间:2019-03-06

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

1.1现象

有个DBA朋友遇到需要分析性能问题,发现DB没有AWR快照???

观察MMON进程正常,手工创建SNAP 报错

 

1.2 处理

参考

https://community.oracle.com/tech/apps-infra/discussion/342662/manual-snapshot-failure

You cannot run a Manual Snapshot if the System Snapshot Interval is set to 0Ensure you are loggoed in to the Database with user with SYSDBA privilege. Edit the Snapshot settings, view and correct the entry  for System Snapshot Interval SQL>select * from dba_hist_wr_control;

 

 

 

 

 

 

 

 确认是由于间隔时间0导致的问题,修改AWR间隔时间就可以了。

exec dbms_workload_repository.modify_snapshot_settings(interval=>60, retention=>30*24*30);

 为什么间隔时间0,这套库之前的12C 升级至19C环境(可能内部自动调整后,升级后AWR快照并未自动调整回正常间隔)。 只能是猜测,MOS并未检索到信息。

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

你可能感兴趣的文章
C语言的数值溢出问题(上)
查看>>
vue项目通过vue.config.js配置文件进行proxy反向代理跨域
查看>>
android:使用audiotrack 类播放wav文件
查看>>
ACM/NCPC2016 C Card Hand Sorting(upc 3028)
查看>>
SLAM学习笔记-求解视觉SLAM问题
查看>>
程序员应该知道的97件事
查看>>
shell编程(六)语言编码规范之(变量)
查看>>
vimscript学习笔记(二)预备知识
查看>>
Android数据库
查看>>
HTML基础,块级元素/行内元素/行内块元素辨析【2分钟掌握】
查看>>
23种设计模式一:单例模式
查看>>
C++&&STL
查看>>
基于单片机简易脉搏测量仪系统设计-毕设课设资料
查看>>
spring启动错误:Could not resolve placeholder
查看>>
invalid byte sequence for encoding
查看>>
技术美术面试问题整理
查看>>
ORB-SLAM2:LoopClosing线程学习随笔【李哈哈:看看总有收获篇】
查看>>
Codeforces Round #305 (Div. 1) B. Mike and Feet(单调栈)
查看>>
js求阶乘
查看>>
Making the grade 和Sonya and Problem Wihtout a Legend
查看>>