cannot fetch plan for SQL_ID

简介:   SQL tuning过程中离不开分析SQL语句的执行计划。在一次提取执行计划的时候碰到cannot fetch plan for SQL_ID的错误提示。

  SQL tuning过程中离不开分析SQL语句的执行计划。在一次提取执行计划的时候碰到cannot fetch plan for SQL_ID的错误提示。根据错误
提示来看需要检查SQL的子游标或该执行计划不在v$sql_plan表中,而这种情况一般不存在。因为刚刚执行过的SQL语句不可能这么快从v$sql_plan
移除。下面给出错误描述及处理办法。

1、故障现象
-->使用display_cursor提取执行计划失败
  admin@CADB> select * from table(dbms_xplan.display_cursor(null,null,'iostats last'));
  
  PLAN_TABLE_OUTPUT
  ---------------------------------------------------------------------------------------------------
  SQL_ID  9babjv8yq8ru3, child number 3
  
  BEGIN DBMS_OUTPUT.GET_LINES(:LINES, :NUMLINES); END;
  
  NOTE: cannot fetch plan for SQL_ID: 9babjv8yq8ru3, CHILD_NUMBER: 3
        Please verify value of SQL_ID and CHILD_NUMBER;
        It could also be that the plan is no longer in cursor cache (check v$sql_plan)

-->查看serveroutput设置值,此时为ON,再次调用dbms_xplan.display_cursor,此时故障同上
  scott@CADB> show serveroutput
  serveroutput ON SIZE 1000000 FORMAT WORD_WRAPPED
  scott@CADB> select /*+ gather_plan_statistics */ * from dept;
  
      DEPTNO DNAME          LOC
  ---------- -------------- -------------
          10 ACCOUNTING     NEW YORK
          20 RESEARCH       DALLAS
          30 SALES          CHICAGO
          40 OPERATIONS     BOSTON
          50 DEVELOPE       CHINA
  
  scott@CADB> select * from table(dbms_xplan.display_cursor(null,null,'iostats last'));
  
  PLAN_TABLE_OUTPUT
  ----------------------------------------------------------------------------------------------
  SQL_ID  9babjv8yq8ru3, child number 2
  
  BEGIN DBMS_OUTPUT.GET_LINES(:LINES, :NUMLINES); END;
  
  NOTE: cannot fetch plan for SQL_ID: 9babjv8yq8ru3, CHILD_NUMBER: 2
        Please verify value of SQL_ID and CHILD_NUMBER;
        It could also be that the plan is no longer in cursor cache (check v$sql_plan)

2、解决故障
-->关闭serveroutput选项
  scott@CADB> set serveroutput off;
  scott@CADB> select /*+ gather_plan_statistics */ * from dept;
  
      DEPTNO DNAME          LOC
  ---------- -------------- -------------
          10 ACCOUNTING     NEW YORK
          20 RESEARCH       DALLAS
          30 SALES          CHICAGO
          40 OPERATIONS     BOSTON
          50 DEVELOPE       CHINA

  /**************************************************/
  /* Author: Robinson Cheng                         */
  /* Blog:   http://blog.csdn.net/robinson_0612     */
  /* MSN:    robinson_0612@hotmail.com              */
  /* QQ:     645746311                              */
  /**************************************************/
  
-->此时成功提取执行计划
  scott@CADB> select * from table(dbms_xplan.display_cursor(null,null,'iostats last'));
  
  PLAN_TABLE_OUTPUT
  ------------------------------------------------------------------------------------------------
  SQL_ID  08u3pfapxj6g5, child number 0
  -------------------------------------
  select /*+ gather_plan_statistics */ * from dept
  
  Plan hash value: 3383998547
  
  ------------------------------------------------------------------------------------
  | Id  | Operation         | Name | Starts | E-Rows | A-Rows |   A-Time   | Buffers |
  ------------------------------------------------------------------------------------
  |   1 |  TABLE ACCESS FULL| DEPT |      1 |      5 |      5 |00:00:00.01 |       8 |
  ------------------------------------------------------------------------------------
  
  12 rows selected.  

-->下面使用explain plan加载执行计划到plan_table,然后使用dbms_xplan.display提取执行计划
-->从下面的实现中可知,serveroutput不影响从plan_table提取执行计划
  scott@CADB> show serveroutput
  serveroutput ON SIZE 1000000 FORMAT WORD_WRAPPED
  scott@CADB> explain plan for select count(*) from emp;
  
  Explained.
  
  scott@CADB> select * from table(dbms_xplan.display);    
  
  PLAN_TABLE_OUTPUT
  -----------------------------------------------------------------------------------------------------------------------------------
  Plan hash value: 1858788047
  
  -------------------------------------------------------------------------
  | Id  | Operation        | Name         | Rows  | Cost (%CPU)| Time     |
  -------------------------------------------------------------------------
  |   0 | SELECT STATEMENT |              |     1 |     1   (0)| 00:00:01 |
  |   1 |  SORT AGGREGATE  |              |     1 |            |          |
  |   2 |   INDEX FULL SCAN| I_EMP_DEPTNO |    14 |     1   (0)| 00:00:01 |
  -------------------------------------------------------------------------
  
  9 rows selected.

-->很多时候DBA在login.sql 或 glogin.sql 时指定了serveroutput为ON,以便在执行PL/SQL时能正常输出,而在获取SQL的执行计划时,恰恰
-->由于该设置而导致无法提取执行计划。不过serveroutput不影响从plan_table提取执行计划。

和执行计划相关链接:

dbms_xplan之display_cursor函数的使用

dbms_xplan之display函数的使用

执行计划中各字段各模块描述

使用 EXPLAIN PLAN 获取SQL语句执行计划 

启用 AUTOTRACE 功能

 

目录
相关文章
|
4月前
|
SQL 数据挖掘 大数据
如何在 SQL Server 中使用 `OFFSET` 和 `FETCH`
【8月更文挑战第10天】
597 8
|
4月前
|
SQL 数据库 Windows
【应用服务 App Service】当使用EntityFrameWorkCore访问Sql Server数据库时,在Azure App Service会出现Cannot create a DbSet for ** because this type is not included in the model for the context的错误
【应用服务 App Service】当使用EntityFrameWorkCore访问Sql Server数据库时,在Azure App Service会出现Cannot create a DbSet for ** because this type is not included in the model for the context的错误
|
6月前
|
SQL 分布式计算 大数据
MaxCompute操作报错合集之执行sql时,出现Cannot read properties of undefined (reading 'start')错误提示,该怎么办
MaxCompute是阿里云提供的大规模离线数据处理服务,用于大数据分析、挖掘和报表生成等场景。在使用MaxCompute进行数据处理时,可能会遇到各种操作报错。以下是一些常见的MaxCompute操作报错及其可能的原因与解决措施的合集。
167 0
|
Java 关系型数据库 MySQL
【Java异常】java.sql.SQLExcetion:Cannot convert value “0000-00-00 00:00:00” from column 9 to TIMESTAMP
【Java异常】java.sql.SQLExcetion:Cannot convert value “0000-00-00 00:00:00” from column 9 to TIMESTAMP
77 0
|
7月前
|
SQL 分布式计算 大数据
利用SparkSQL Logical Plan Parse 打造大数据平台SQL诊断利器
利用SparkSQL Logical Plan Parse 打造大数据平台SQL诊断利器
99 0
|
7月前
|
SQL
Greenplum【SQL 03】实现树结构+自定义函数+避免函数重复调用+ function cannot execute on a QE slice 问题处理(优化过程全记录)
Greenplum【SQL 03】实现树结构+自定义函数+避免函数重复调用+ function cannot execute on a QE slice 问题处理(优化过程全记录)
156 0
|
SQL Shell
【已解决】SQL2012启动时报错:cannot find one or more cpmponents
下载Microsoft Visual Studio 2010 Shell(Isolate)-CHS安装即可 下载地址:Visual Studio 独立 Shell 下载及安装:点击同意许可,选择vs2010独立shell(zh-CN) 安装完成,重启SQL ServerManagement Studio 即可
48 0
|
XML 数据格式
解决 Cannot convert value of type ‘java.lang.String‘ to required type ‘java.sql.Driver‘ for property ‘
解决 Cannot convert value of type ‘java.lang.String‘ to required type ‘java.sql.Driver‘ for property ‘
357 0
|
SQL 存储 缓存
Oracle-SQL Explain Plan解读
Oracle-SQL Explain Plan解读
165 0
|
SQL 安全 关系型数据库
RDS SQL Server 备份恢复到本地报错:Cannot find server certificate with thumbprint
RDS SQL Server 备份恢复到本地报错:Cannot find server certificate with thumbprint
下一篇
无影云桌面