Oracle AWR 阙值影响历史执行计划

最近有网友提到为什么在dba_hist_sql_plan中无法查看到sql语句的历史执行计划,对于这个问题是由于缺省情况下,Oracle 设定的阙值并非捕获所有的sql语句,所以无法看到某些sql历史执行计划乃正常现象。在Oracle 9i的时候,我们可以通过设定不同的快照level获得不同程度的详细信息。也可以单独配置收集sql的阙值,如指定sql的执行次数,磁盘读的次数,解析调用的数量等。所有超出这个设置的sql语句都收集到snapshot之中。Oracle 10g,11g也有相应的设置。下面来描述这个问题。

 

1、缺省阙值的情形

[sql] view plain copy print ?
  1. --环境,下面的演示基于Oracle 10g  
  2. scott@CNMMBO> select * from v$version where rownum<2;  
  3.   
  4. BANNER  
  5. ----------------------------------------------------------------  
  6. Oracle Database 10g Release 10.2.0.3.0 - 64bit Production  
  7.   
  8. --下面的查询awr配置  
  9. scott@CNMMBO> select * from dba_hist_wr_control;  
  10.   
  11.       DBID SNAP_INTERVAL        RETENTION                 TOPNSQL  
  12. ---------- -------------------- ------------------------- ----------  
  13.  938506715 +00000 01:00:00.0    +00007 00:00:00.0         DEFAULT  
  14.   
  15. --发布sql查询  
  16. scott@CNMMBO> select * from dept where loc='CHICAGO';  
  17.   
  18.     DEPTNO DNAME          LOC  
  19. ---------- -------------- -------------  
  20.         30 SALES          CHICAGO  
  21.   
  22. --获得sql_id  
  23. scott@CNMMBO> @my_last_sql  
  24.   
  25. ADDRESS          HASH_VALUE SQL_ID        COMMAND_TYPE      PIECE SQL_TEXT  
  26. ---------------- ---------- ------------- ------------ ---------- ------------------------------------------  
  27. 000000009F942760 2626775672 2jbkb5qf92ums            3          0 select * from dept where loc='CHICAGO'  
  28.   
  29. --从v$sql_plan获得缓冲区的执行计划  
  30. scott@CNMMBO> get sql_plan_curr.sql  
  31.   1  set linesize 135  
  32.   2  col id format 99  
  33.   3  col operation format a25  
  34.   4  col options format a25  
  35.   5  col object_name format a25 wrap  
  36.   6  SELECT id,  
  37.   7           operation,  
  38.   8           options,  
  39.   9           object_name,  
  40.  10           bytes,  
  41.  11           cpu_cost,  
  42.  12           io_cost  
  43.  13  FROM v$sql_plan  
  44.  14     WHERE sql_id = '&input_sql_id'  
  45.  15* ORDER BY id;  
  46. scott@CNMMBO> @sql_plan_curr.sql      -->此时可以查询到对应sql的执行计划  
  47. Enter value for input_sql_id: 2jbkb5qf92ums  
  48.   
  49.  ID OPERATION                 OPTIONS                   OBJECT_NAME      BYTES   CPU_COST    IO_COST  
  50. --- ------------------------- ------------------------- --------------- ------- ---------- ----------  
  51.   0 SELECT STATEMENT  
  52.   1 TABLE ACCESS              FULL                      DEPT                20      36567          3  
  53.   
  54. --下面尝试从dba_hist_sql_plan获得执行计划  
  55. scott@CNMMBO> get sql_plan_his.sql  
  56.   1  set linesize 135  
  57.   2  col id format 99  
  58.   3  col operation format a25  
  59.   4  col object_name format a25 wrap  
  60.   5  SELECT id,  
  61.   6           operation,  
  62.   7           options,  
  63.   8           object_name,  
  64.   9           bytes,  
  65.  10           cpu_cost,  
  66.  11           io_cost  
  67.  12      FROM dba_hist_sql_plan  
  68.  13     WHERE sql_id = '&input_sql_id'  
  69.  14* ORDER BY id;  
  70. scott@CNMMBO> @sql_plan_his     --查询无法获得执行计划  
  71. Enter value for input_sql_id: 2jbkb5qf92ums  
  72.   
  73. no rows selected  
  74.   
  75. scott@CNMMBO> exec dbms_workload_repository.create_snapshot();  -->执行一次快照,写入缓冲区的内容倒snapsho  
  76.   
  77. PL/SQL procedure successfully completed.  
  78.   
  79. scott@CNMMBO> @sql_plan_his     -->依旧无法获得执行计划  
  80. Enter value for input_sql_id: 2jbkb5qf92ums  
  81.   
  82. no rows selected  

2、修改阙值后的情形

[sql] view plain copy print ?
  1. --下面我们将topnsql参数设置为最大值,以确保任意sql只要执行一次即可写入到快照  
  2. scott@CNMMBO> exec dbms_workload_repository.modify_snapshot_settings(topnsql=>'MAXIMUM');  
  3.   
  4. PL/SQL procedure successfully completed.  
  5.   
  6. --校验awr配置  
  7. scott@CNMMBO> select * from dba_hist_wr_control;  
  8.   
  9.       DBID SNAP_INTERVAL        RETENTION                 TOPNSQL  
  10. ---------- -------------------- ------------------------- ----------  
  11.  938506715 +00000 01:00:00.0    +00007 00:00:00.0         MAXIMUM  
  12.   
  13. --先看看dba_hist_sql_plan,此时肯定是不存在,因为没有执行快照  
  14. scott@CNMMBO> @sql_plan_his  
  15. Enter value for input_sql_id: 2jbkb5qf92ums  
  16.   
  17. no rows selected  
  18.   
  19. --再次执行一下原来的sql语句  
  20. scott@CNMMBO> select * from dept where loc='CHICAGO';  
  21.   
  22.     DEPTNO DNAME          LOC  
  23. ---------- -------------- -------------  
  24.         30 SALES          CHICAGO  
  25.   
  26. --此时执行手动创建快照实现写入  
  27. scott@CNMMBO> exec dbms_workload_repository.create_snapshot();  
  28.   
  29. PL/SQL procedure successfully completed.  
  30.   
  31. --再次查看,sql执行计划已经写入到awr快照  
  32. scott@CNMMBO> @sql_plan_his  
  33. Enter value for input_sql_id: 2jbkb5qf92ums  
  34.   
  35.  ID OPERATION                 OPTIONS                   OBJECT_NAME      BYTES   CPU_COST    IO_COST  
  36. --- ------------------------- ------------------------- --------------- ------- ---------- ----------  
  37.   0 SELECT STATEMENT  
  38.   1 TABLE ACCESS              FULL                      DEPT                20      36567          3  
  39.   
  40. --同时我们也可以通过DBMS_XPLAN.display_awr查看到相应的执行计划  
  41. --Author : Robinson  
  42. -- Blog  : http://blog.csdn.net/robinson_0612  
  43. scott@CNMMBO> @sql_plan_disp_awr  
  44. Enter value for input_sqlid: 2jbkb5qf92ums  
  45.   
  46. PLAN_TABLE_OUTPUT  
  47. ---------------------------------------------------------------------------------------  
  48. SQL_ID 2jbkb5qf92ums  
  49. --------------------  
  50. select * from dept where loc='CHICAGO'  
  51.   
  52. Plan hash value: 3383998547  
  53.   
  54. --------------------------------------------------------------------------  
  55. | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |  
  56. --------------------------------------------------------------------------  
  57. |   0 | SELECT STATEMENT  |      |       |       |     3 (100)|          |  
  58. |   1 |  TABLE ACCESS FULL| DEPT |     1 |    20 |     3   (0)| 00:00:01 |  
  59. --------------------------------------------------------------------------  
  60.   
  61. 13 rows selected.  
  62.   
  63. --恢复缺省值  
  64. scott@CNMMBO> exec dbms_workload_repository.modify_snapshot_settings(topnsql=>'DEFAULT');  
  65.   
  66. PL/SQL procedure successfully completed.  

3、修改awr阙值的过程
DBMS_WORKLOAD_REPOSITORY.MODIFY_SNAPSHOT_SETTINGS(
   retention   IN  NUMBER    DEFAULT NULL,
   interval    IN  NUMBER    DEFAULT NULL,
   topnsql     IN  NUMBER    DEFAULT NULL,
   dbid        IN  NUMBER    DEFAULT NULL);

DBMS_WORKLOAD_REPOSITORY.MODIFY_SNAPSHOT_SETTINGS(
   retention   IN  NUMBER    DEFAULT NULL,
   interval    IN  NUMBER    DEFAULT NULL,
   topnsql     IN  VARCHAR2,
   dbid        IN  NUMBER    DEFAULT NULL);

--主要给出topnsql,具体可参照Oracle reference
topnsql
If NUMBER: Top N SQL size. The number of Top SQL to flush for each SQL criteria (Elapsed Time, CPU Time, Parse Calls, Shareable Memory, Version Count). The value for this setting will not be affected by the statistics/flush level and will override the system default behavior for the AWR SQL collection. The setting will have a minimum value of 30 and a maximum value of 50,000. Specifying NULL will keep the current setting.

 

If VARCHAR2: Users are allowed to specify the following values: (DEFAULT, MAXIMUM, N), where N is the number of Top SQL to flush for each SQL criteria. Specifying DEFAULT will revert the system back to the default behavior of Top 30 for statistics level TYPICAL and Top 100 for statistics level ALL. Specifying MAXIMUM will cause the system to capture the complete set of SQL in the cursor cache. Specifying the number N is equivalent to setting the Top N SQL with the NUMBER type. Specifying NULL for this argument will keep the current setting.

 

4、小结
    a、所有当前执行的sql的执行计划位于v$sql_plan视图,按照LRU算法淘汰
    b、符合sql捕获条件的sql执行计划在awr快照生成之后会被填充到dba_hist_sql_plan数据字典
    c、导致sql执行计划无法从dba_hist_sql_plan获得应考虑修改awr快照配置topnsql参数
    d、awr快照同时受到statistics_level参数的影响。如果其值为all时,收集100条top sql,为typical时收集30条


Author: leshami

Forward from http://blog.csdn.net/leshami/article/details/8732708

你可能感兴趣的:(Oracle AWR 阙值影响历史执行计划)