文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

AWR不能自动生成快照解决方法

2024-04-02 19:55

关注

AWR不能自动生成快照解决方法

问题描述:RAC归档满后,出现AWR不能自动生成快照。经原理应该是MMON HANG住导致,所以尝试重启MMON后问题解决。; MMON HANG解决办法

1)重启一下mmon的刷新 
alter system set "_swrf_mmon_flush"=false; 
alter system set "_swrf_mmon_flush"=true;  2)或者,找到mmon进程杀掉,让数据库自动重启一个新的mmon进程,或者重启下实例。 
ps -ef|grep mmon 
kill -9 xxxxxx  Manageability Monitor Processes (MMON and MMNL)
The manageability monitor process (MMON) performs many tasks related to the Automatic Workload Repository (AWR). For example, MMON writes when a metric violates its threshold value, taking snapshots, and capturing statistics value for recently modified SQL objects. The manageability monitor lite process (MMNL) writes statistics from the Active Session History (ASH) buffer in the SGA to disk. MMNL writes to disk when the ASH buffer is full. See Also:
"Automatic Workload Repository (AWR)" and "Active Session History (ASH)"

AWR和ASH后台运行进程
AWR ==>MMON
ASH ==>MMNL MMON负责执行与AWR相关的任务。包括收集数据库统计信息,收集AWR快照,启动各种自动维护作业JOB,生成超过阀值告警信息。
MMNL负责执行与ASH相关的任务。

###之前MOS 专家咨询的记录

1. Please provide the below script output on failed instance:<info.html>

conn / as sysdbaset pages 1000set num 20

alter session set nls_date_format='yyyy-mm-dd hh34:mi:ss';

alter session set nls_timestamp_format='yyyy-mm-dd hh34:mi:ss.ff';

alter session set nls_timestamp_tz_format='yyyy-mm-dd hh34:mi:ss.ff tzh:tzm';

set mark html onspool info.html

select * from (select t.*, rank() over(partition by dbid, instance_number order by begin_interval_time desc) r from dba_hist_snapshot t) where r < 100;

select * from wrm$_wr_control where dbid = (select dbid from v$database);

select * from gv$database;

select * from gv$thread;show parameter statistics_level

show parameter control_management_pack_accessspool off

exit

2. Provide the "awrinfo" script output on instance

3: <awrinfo.txt>

SQL> conn / as sysdbaSQL> @?/rdbms/admin/awrinfo.sql

3. Enable SQL tracing on MMON slaves to collect more information. (do this in all instances)

begin

dbms_monitor.serv_mod_act_trace_enable(service_name => 'SYS$BACKGROUND'

,module_name => 'MMON_SLAVE'

,action_name => 'Auto-Flush Slave Action'

,waits => true

,binds => true);

end;

/

begin

dbms_monitor.serv_mod_act_trace_enable(service_name => 'SYS$BACKGROUND',

module_name => 'MMON_SLAVE'

,action_name => 'Remote-Flush Slave Action',

waits => true,binds => true);

end;

/

Wait for 2 snapshots time then upload the MMON (xxxx_mmon_xxxx.trc) and the below mmon slave trace files.

egrep -l "Auto-Flush Slave Action|Remote-Flush Slave Action" *.trc | xargs tar -cvf - | gzip > trace.tar.gzls -l trace.tar.gzTo disable the tracing later,

use "dbms_monitor.serv_mod_act_trace_disable" instead. for example:

begin

dbms_monitor.serv_mod_act_trace_disable(service_name => 'SYS$BACKGROUND',

module_name => 'MMON_SLAVE',

action_name => 'Auto-Flush Slave Action');

end;

/

begin

dbms_monitor.serv_mod_act_trace_disable(service_name => 'SYS$BACKGROUND',

module_name => 'MMON_SLAVE',

action_name => 'Remote-Flush Slave Action');

end;

/


########################################################################################
版权所有,文章允许转载,但必须以链接方式注明源地址,否则追究法律责任!【QQ交流群:53993419】
QQ:14040928 E-mail:dbadoudou@163.com
本文链接: http://blog.itpub.net/26442936/viewspace-2125130/

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯