当前位置:  数据库>oracle

浅谈Oracle SQL trace

    来源: 互联网  发布时间:2017-04-28

    本文导语: 在生产环境中,当数据库运行异常缓慢的时候,DBA同学们都会想冲进数据库内部看看sql到底如何运行,为何语句执行的如此缓慢?在我的生产环境中,经常有多表关联查询语句运行缓慢,多数是I/O等待的问题,因而我第一步会去...

在生产环境中,当数据库运行异常缓慢的时候,DBA同学们都会想冲进数据库内部看看sql到底如何运行,为何语句执行的如此缓慢?在我的生产环境中,经常有多表关联查询语句运行缓慢,多数是I/O等待的问题,因而我第一步会去看sql的执行计划是否出现了问题,其次就会用到sql trace工具来跟踪下sql的实际运行情况!

一:使用sql_trace
1:产生select语句的trace文件,一般会使用tracefile_identifier给trace文件起一个标识性的名称,便于查找

  • [Oracle@dg53 ~]$ sqlplus /nolog  
  • SQL*Plus: Release 10.2.0.1.0 - Production on Fri Jun 8 11:53:36 2012  
  • Copyright (c) 1982, 2005, Oracle.  All rights reserved.  
  •  
  • SQL> conn hr/hr  
  • Connected.  
  •  
  • SQL> alter session set tracefile_identifier='hr_trace01';  
  • Session altered.  
  •  
  • SQL> alter session set sql_trace=true;  
  • Session altered.  
  •  
  • SQL> select salary,last_name from employees where employee_id=100;  
  •  
  •     SALARY LAST_NAME  
  • ---------- -------------------------  
  •       2000 King  
  •  
  • SQL> alter session set sql_trace=false;  
  • Session altered.  
  •  
  • [oracle@dg53 ~]$ cd $ORACLE_BASE/admin/orcl10g/udump/  
  • [oracle@dg53 udump]$ ll *hr*  
  • -rw-r----- 1 oracle oinstall 89149 Jun  8 11:58 dg53_ora_10498_hr_trace01.trc 
  • 2:使用tkprof工具对产生的trace文件进行过滤,抽取有用的信息,默认的trace文件输出太多信息!
    sys=no代表不输出trace文件中所有sys用户的操作,包含用户sql语句引起的递归sql,使输出变的简洁;
    aggragate=yes代表相同的sql语句在输入文件中做合并,使输出变的简洁;

    [oracle@dg53 udump]$ tkprof dg53_ora_10498_hr_trace01.trc /home/oracle/trace01.log   aggregate=yes sys=no explain=hr/hr

    [oracle@dg53 udump]$ wc -l dg53_ora_10498_hr_trace01.trc
    1097 dg53_ora_10498_hr_trace01.trc
    [oracle@dg53 udump]$ wc -l /home/oracle/trace01.log
    137 /home/oracle/trace01.log


    [oracle@dg53 ~]$ cat trace01.log
    TKPROF: Release 10.2.0.1.0 - Production on Fri Jun 8 12:06:23 2012
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.

    Trace file: dg53_ora_10498_hr_trace01.trc
    Sort options: default

    ********************************************************************************
    count    = number of times OCI procedure was executed
    cpu      = cpu time in seconds executing
    elapsed  = elapsed time in seconds executing
    disk     = number of physical reads of buffers from disk
    query    = number of buffers gotten for consistent read
    current  = number of buffers gotten in current mode (usually for update)
    rows     = number of rows processed by the fetch or execute call
    ********************************************************************************
    alter session set sql_trace=true








    call     count       cpu    elapsed       disk      query    current        rows
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    Parse        0      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.01          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    total        1      0.00       0.01          0          0          0           0





    Misses in library cache during parse: 0
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 55  (HR)
    ********************************************************************************
    select salary,last_name
    from
     employees where employee_id=100






    call     count       cpu    elapsed       disk      query    current        rows
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    Parse        1      0.00       0.02          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        2      0.00       0.01          2          2          0           1
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    total        4      0.00       0.04          2          2          0           1





    Misses in library cache during parse: 1  (表示该sql语句执行了硬解析,未在库缓存中命中)
    Optimizer mode: ALL_ROWS    (CBO的模式,表示尽可能快的输出全部的结果集,oltp系统分页条
    件下普遍使用first_rows)
    Parsing user id: 55  (HR)

    Rows     Row Source Operation
    -------  ---------------------------------------------------
          1  TABLE ACCESS BY INDEX ROWID EMPLOYEES (cr=2 pr=2 pw=0 time=18516 us)
          1   INDEX UNIQUE SCAN EMP_EMP_ID_PK (cr=1 pr=1 pw=0 time=11715 us)(object id


    51859)

    Rows     Execution Plan (因为在使用tkprof分析trace文件的时候使用了explain参数,所以有执行计划输出)
    -------  ---------------------------------------------------
          0  SELECT STATEMENT   MODE: ALL_ROWS
          1   TABLE ACCESS   MODE: ANALYZED (BY INDEX ROWID) OF 'EMPLOYEES'
                  (TABLE)
          1    INDEX   MODE: ANALYZED (UNIQUE SCAN) OF 'EMP_EMP_ID_PK' (INDEX
                   (UNIQUE))





    ********************************************************************************
    alter session set sql_trace=false

    call     count       cpu    elapsed       disk      query    current        rows
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    total        2      0.00       0.00          0          0          0           0





    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 55  (HR)

    ********************************************************************************
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS

    call     count       cpu    elapsed       disk      query    current        rows
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    Parse        2      0.00       0.02          0          0          0           0
    Execute      3      0.00       0.01          0          0          0           0
    Fetch        2      0.00       0.01          2          2          0           1
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    total        7      0.00       0.05          2          2          0           1





    Misses in library cache during parse: 2
    Misses in library cache during execute: 1

    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS

    call     count       cpu    elapsed       disk      query    current        rows
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    Parse       21      0.01       0.02          0          0          0           0
    Execute    122      0.03       0.03          0          0          0           0
    Fetch      173      0.01       0.16         18        419          0         633
    ------- ------  -------- ---------- ---------- ---------- ----------  ----------
    total      316      0.06       0.22         18        419          0         633





    Misses in library cache during parse: 15
    Misses in library cache during execute: 15

        3  user  SQL statements in session.
      122  internal SQL statements in session.
      125  SQL statements in session.
        1  statement EXPLAINed in this session.
    ********************************************************************************
    Trace file: dg53_ora_10498_hr_trace01.trc
    Trace file compatibility: 10.01.00
    Sort options: default






           1  session in tracefile.
           3  user  SQL statements in trace file.
         122  internal SQL statements in trace file.
         125  SQL statements in trace file.
          18  unique SQL statements in trace file.
           1  SQL statements EXPLAINed using schema:
               HR.prof$plan_table
                 Default table was used.
                 Table was created.
                 Table was dropped.
        1097  lines in trace file.
          38  elapsed seconds in trace file.











        
     
     

    您可能感兴趣的文章:

  • 如何设置让Oracle SQL Developer显示的时间包含时分秒
  • Oracle 数据库开发工具 Oracle SQL Developer
  • oracle导出sql语句的结果集和保存执行的sql语句(深入分析)
  • 取数据库前几条数据(sql server、oracle、mysql)的sql写法
  • Oracle发布Oracle SQL Developer 1.2数据库开发工具 帮助用户简化开发工作
  • oracle用什么SQL语句判断表存不存在
  • 与jsp搭配,oracle好?sql server好?
  • Oracle开发工具 Oracle SQL Handler
  • Oracle与SQL Server区别在哪里
  • oracle sql执行过程(流程图)
  • Oracle的SQL语句中如何处理‘&’符号
  • oracle中得到一条SQL语句的执行时间的两种方式
  • 怎么写一个Shell来执行这样的功能,访问Oracle数据库,然后执行一个SQL脚本,生成一个文件。急!
  • Oracle捕获问题SQL解决CPU过渡消耗
  • Oracle中SQL语句连接字符串的符号使用介绍
  • Unix系统下oracle sql排版
  • oracle.xml.sql.query.OracleXMLQuery
  • oracle SQL解析步骤小结
  • 怎么在java中向一个sql语句传参数,就像oracle的proc一样啊?
  • Oracle中DBMS_SQL解析SQL语句的流程
  • Linux/UNIX下,C++程序通过那些步骤访问Oracle或者Sybase SQL数据库?
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Oracle 12c发布简单介绍及官方下载地址
  • 在linux下安装oracle,如何设置让oracle自动启动!也就是让oracle那个服务自动启动,不是手动的
  • oracle 11g最新版官方下载地址
  • 请问su oracle 和su - oracle有什么不同?
  • Oracle 数据库(oracle Database)Select 多表关联查询方式
  • 虚拟机装Oracle R12与Oracle10g
  • Oracle数据库(Oracle Database)体系结构及基本组成介绍
  • Oracle EBS R12 支持 Oracle Database 11g
  • Oracle 10g和Oracle 11g网格技术介绍
  • SCO unix下安装oracle,但没有光盘,请大家推荐一个oracle下载站点(unix版本的)。谢谢!!!!
  • oracle中如何把表中具有相同值列的多行数据合并成一行
  • 请问大家用oracle数据库, 用import oracle.*;下的东西么? 还是用标准库?
  • Oracle 数据库(oracle Database)性能调优技术详解
  • Linux /$ORACLE_HOME $ORACLE_HOME
  • ORACLE日期相关操作
  • Linux系统下Oracle的启动与Oracle监听的启动
  • ORACLE数据库常用字段数据类型介绍
  • 请问在solaris下安装ORACLE,用root用户和用oracle用户安装有什么区别么?
  • Oracle 12c的九大最新技术特性介绍
  • 网间Oracle的连接,远程连接Oracle服务器??
  • ORACLE中DBMS_RANDOM随机数生成包
  • 请教:.profile中:if [ -d /opt/oracle/db01/app/oracle/product/9.2.0 ]是什么意思?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,