• 如何使用SQLPLUS分析SQL语句(查询执行计划跟踪)


    方法一:autotrace

    1,  connect sys/密码 as sysdba,在sys用户下运行$ORACLE_HOME/sqlplus/admin/plustrce.sql
    这段sql的实际内容如下:
    set echo on
    drop role plustrace;
    create role plustrace;
    grant select  on v_$sesstat to plustrace;
    grant select on v_$statname to plustrace;
    grant select on v_$mystat  to plustrace;
    grant plustrace to dba with admin option;
    set echo off

    以上产生plustrace角色,然后在sys用户下把此角色赋予一般用户
    SQL> grant PLUSTRACE to 用户名;

    2,然后在当前用户SQL>下运行$ORACLE_HOME/rdbms/admin/utlxplan.sql,它会创建一个plan_table,用来存储分析SQL语句的结果。

    实际执行的是如下语句:

    create table PLAN_TABLE (
                              statement_id    varchar2(30),
                              timestamp       date,
                              remarks         varchar2(80),
                              operation       varchar2(30),
                              options         varchar2(30),
                              object_node     varchar2(128),
                              object_owner    varchar2(30),
                              object_name     varchar2(30),
                              object_instance numeric,
                              object_type     varchar2(30),
                              optimizer       varchar2(255),
                              search_columns  number,
                              id              numeric,
                              parent_id       numeric,
                              position        numeric,
                              cost            numeric,
                              cardinality     numeric,
                              bytes           numeric,
                              other_tag       varchar2(255),
                              partition_start varchar2(255),
                              partition_stop  varchar2(255),
                              partition_id    numeric,
                              other           long,
                              distribution    varchar2(30));

    3,SQL/PLUS的窗口运行以下命令

    set time on;                 (说明:打开时间显示)(可选)
    set autotrace on;            (说明:打开自动分析统计,并显示SQL语句的运行结果)
    set autotrace traceonly;     (说明:打开自动分析统计,不显示SQL语句的运行结果)

    4,接下来你就运行需要查看执行计划的SQL语句,看到其分析统计结果了。一般来讲,我们的SQL语句应该避免对大表的全表扫描。

    5,关闭以上功能,在SQL/PLUS的窗口运行以下命令

    set time off;                      (说明:关闭时间显示)
    set autotrace off;       

    附:相关的set autotrace命令:

    SET AUTOTRACE OFF
    No AUTOTRACE report is generated.

    SET AUTOTRACE ON EXPLAIN
    shows only the optimizer execution path.

    SET AUTOTRACE ON

    STATISTICS shows only the SQL statement execution statistics.

    SET AUTOTRACE ON
    includes both the optimizer execution path and the SQL statement execution statistics.

    SET AUTOTRACE TRACEONLY
    Like SET AUTOTRACE ON, but suppresses the printing of the user’s query output, if any.

    说明:如果执行了set autotrace on 语句,接下来的查询、插入、更新、删除语句就会显示执行计划和有用的统计信息,直到执行set autotrace off语句。

    方法二: EXPLAIN PLAN FOR sql

    1,在sqlplus下执行:EXPLAIN PLAN FOR sql语句,执行后会提示已经解释。

    2,然后执行如下查询,查询出执行计划

    SQL> select * from table(dbms_xplan.display);

    例子:

    SQL> explain plan for select * from emp where deptno='20';

    Explained.

    SQL> select * from table(dbms_xplan.display);
     
    注:除了上面的,还有一个很有用的函数dbms_xplan.display_awr(sql_id ,null,null,'ALL');这个可以结合AWR报告中的SQL语句的SQL_ID来获得历史语句的执行计划,然后通过视图 dba_hist_sqlbind 找到语句对应的绑定变量值。
  • 相关阅读:
    SAP系统邮件功能配置
    SAP SQL 表inner join 不同长度字段连接
    Read_text 获取传入参数
    imageio.write 惹的祸,占用cpu过高,堆溢出问题
    消息队列报 堆溢出解决方案
    技术文档java
    maven:项目中一些依赖不能更新可使用如下命令进行更新 maven库
    volatile 验证 java
    用Lock 和Newcondition实现同步容器 java
    计算数组中有几对相反数
  • 原文地址:https://www.cnblogs.com/zhanglimei/p/5265756.html
Copyright © 2020-2023  润新知