Monitoring SQL Statements with Real-Time SQL Monitoring (文档 ID 1380492.1)

来源:互联网 发布:linux开源代码 编辑:程序博客网 时间:2024/05/21 04:41

In this Document

 Purpose Scope Details DBMS_SQLTUNE.REPORT_SQL_MONITOR REPORT_SQL_MONITOR_LIST

APPLIES TO:

Oracle Database - Enterprise Edition - Version 11.1.0.6 and later
Information in this document applies to any platform.

PURPOSE

The Document explains how to use Real-Time SQL Monitoring to monitor queries.

SCOPE

For developers and DBA's

DETAILS

The Oracle 11g Database or later versions has a new interface to monitor long running SQL commands.The feature is called Real-Time SQL Monitoring. By default, SQL monitoring is automatically started when a SQL command runs parallel, or when it has consumed at least five seconds of the CPU or I/O time in a single execution. The MONITOR hint can also be used to turn on SQL Monitoring for a SQL statement.
SQL Monitoring requires:
  • A Diagnostics and Tuning Pack License
  • STATISTICS_LEVEL parameter to be set to 'TYPICAL' or 'ALL'
  • CONTROL_MANAGEMENT_PACK_ACCESS parameter set to  'DIAGNOSTIC+TUNING'.
The Real-Time SQL Monitoring feature is licensed with Diagnostics and Tuning Pack.
After monitoring is initiated, an entries are added to the dynamic performance V$SQL_MONITOR and V$SQL_PLAN_MONITOR views. This entry tracks key performance metrics collected for the execution, including the elapsed time, CPU time, number of reads and writes, I/O wait time, and various other wait times.These statistics are refreshed in near real time as the command executes, generally once every second.
After the execution ends, monitoring information is not deleted immediately, but is kept in the V$SQL_MONITOR/V$SQL_PLAN_MONITOR view for at least one minute.The entry is eventually deleted so its space can be reclaimed as new commands are monitored. 
You can find more details in the attached white paper.

DBMS_SQLTUNE.REPORT_SQL_MONITOR

The REPORT_SQL_MONITOR function is used to return a SQL monitoring report for a specific SQL statement. The SQL statement can be identified using a variety of parameters.
The function accepts some optional parameters, the  most common ones are:
  • SQL_ID - The SQL_ID of the query of interest. When NULL (the default) the last monitored statement is targeted.
  • REPORT_LEVEL - The amount of information displayed in the report. 
    The basic allowed values are 'NONE', 'BASIC', 'TYPICAL' or 'ALL', 
    The default is 'TYPICAL' which is sufficent in most cases.
  • TYPE - The format used to display the report ('TEXT', 'HTML', 'XML' or 'ACTIVE'). 
    The 'ACTIVE' parameter is new in Oracle 11g Release 2 and displays the output using HTML and Flash. An Internet connection is needed to use the 'ACTIVE' parameter.
  • SESSION_ID - Targets a subset of queries based on the specified SID. 
    Use SYS_CONTEXT('USERENV','SID') for the current session. 
    The default is NULL.
Following is an example using REPORT_SQL_MONITOR:
SET LONG 1000000SET LONGCHUNKSIZE 1000000SET LINESIZE 1000SET PAGESIZE 0SET TRIM ONSET TRIMSPOOL ONSET ECHO OFFSET FEEDBACK OFFSELECT DBMS_SQLTUNE.report_sql_monitor(sql_id => '<sql_id>', type => 'TEXT')AS report FROM dual;
To get an overview what SQL commands are in V$SQL_MONITOR you can use:
SET LINESIZE 300
COLUMN sql_text FORMAT A100
SELECT sql_id, status, sql_text FROM v$sql_monitor;

or you can use the function  REPORT_SQL_MONITOR_LIST.
For the above example this shows that there is a statement with the sql id 526mvccm5nfy4.
We can get now a report with the following command:
SET LONG 1000000 
SET FEEDBACK OFF
spool monitor_sql.html 
SELECT DBMS_SQLTUNE.report_sql_monitor(sql_id =>''0tqfh0cggfg0v',type=> 'HTML')
AS report FROM dual;
spool off
The options are TEXT, HTML or ACTIVE. The active option is the best choice for parallel queries.
The output looks like this :

HTML:

SQL Monitoring Report (HTML)
TEXT:

SQL Monitoring Report (TEXT)

REPORT_SQL_MONITOR_LIST

The REPORT_SQL_MONITOR_LIST function was added in Oracle 11g Release 2 to generate a summary of all SQL stored in V$SQL_MONITOR.
SET LONG 1000000
SET LONGCHUNKSIZE 1000000
SET LINESIZE 1000
SET PAGESIZE 0
SET TRIM ON
SET TRIMSPOOL ON
SET ECHO OFF
SET FEEDBACK OFF

SELECT DBMS_SQLTUNE.report_sql_monitor_list(type =>'TEXT',report_level => 'ALL') AS report FROM dual;
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 qq突然被冻结了怎么办 扣扣密码被冻结怎么办 蠕动泵不抽水了怎么办 失眠多梦压力大怎么办 大福的皮硬了怎么办 安卓手机root失败怎么办 你的手机已root怎么办 移动网不能看片怎么办 网站的密码忘了怎么办 拍拍贷换手机了怎么办 六个半月的宝宝发烧怎么办 5个月的小孩发烧怎么办 3个月小孩发烧怎么办 2岁宝宝感冒发烧怎么办 2岁宝宝发烧38度怎么办 2岁宝宝反复发烧怎么办 八个月的孩子发烧怎么办 2岁宝宝咳嗽厉害怎么办 2岁宝宝睡觉咳嗽怎么办 2岁宝宝感冒咳嗽怎么办 2岁宝宝晚上咳嗽怎么办 1岁宝宝老便秘怎么办 2岁多宝宝老便秘怎么办 1岁半宝宝便秘怎么办 2岁宝宝拉稀黄水怎么办 二岁宝宝便秘该怎么办 2岁半宝宝拉稀怎么办 手机中了病毒该怎么办 u盘中了蠕虫病毒怎么办 孤岛惊魂3很卡怎么办 海康威视弱密码怎么办 扣扣密码忘了怎么办 记不到扣扣密码怎么办 赌博输了几十万怎么办 我被朋友骗了钱怎么办 被电话诈骗了钱怎么办 吉他会弹不会唱怎么办 卡拉波勋章没了怎么办 建行u盾过期了怎么办 工行u盾检测不到怎么办 建行网银盾丢了怎么办