【oracle性能】11g生成ASH报告

oracle 11g生成ASH报告

ASH以V$SESSION为基础,每秒采样一次,记录活动会话等待的事件。不活动的会话不会采样,采样工作由新引入的后台进程MMNL来完成。ASH buffers 的最小值为1MB,最大值不超过30MB.内存中记录数据。期望值是记录一小时的内容。

数据库版本:11.2.0.4;系统版本:Oracle Linux6.4

SQL> @$ORACLE_HOME/rdbms/admin/ashrpt.sql        #回车
...
Specify the Report Type
~~~~~~~~~~~~~~~~~~~~~~~
Enter 'html' for an HTML report, or 'text' for plain text
Defaults to 'html'
Enter value for report_type:            #报表输出类型,默认为html,直接回车
...
Specify the timeframe to generate the ASH report
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Enter begin time for report:

--    Valid input formats:
--      To specify absolute begin time:
--        [MM/DD[/YY]] HH24:MI[:SS]
--        Examples: 02/23/03 14:30:15
--                  02/23 14:30:15
--                  14:30:15
--                  14:30
--      To specify relative begin time: (start with '-' sign)
--        -[HH24:]MI
--        Examples: -1:15  (SYSDATE - 1 Hr 15 Mins)
--                  -25    (SYSDATE - 25 Mins)

Defaults to -15 mins
Enter value for begin_time:         
#开始时间,默认为15分钟前,可直接回车,如果需要30分钟前,输入-30
。。。
Enter duration in minutes starting from begin time:
Defaults to SYSDATE - begin_time
Press Enter to analyze till current time
Enter value for duration:         #收集多长时间,默认到当前时间
。。。
Specify the Report Name
~~~~~~~~~~~~~~~~~~~~~~~
The default report file name is ashrpt_1_1111_1626.html.  To use this name,
press to continue, otherwise enter an alternative.
Enter value for report_name:            #报告名称,默认即可,会包含有时间
。。。
End of Report

Report written to ashrpt_1_1111_1626.html        
#生成报告,报告所在位置为当前位置,退出即可看到
SQL> exit

 

你可能感兴趣的:(Oracle性能&恢复,oracle,ash,ash,ashrpt,ashrpt.sql,oracle,11g,ASH)