【Oracle】一款非常好用的trace文件分析工具之一

 

北在南方 2016-04-14 11:23:58 浏览547 评论0

摘要: 介绍一款非常好用的10046分析工具--trca(Trace Analyzer),以前分析10046跟踪文件的时候都是使用tkprof 工具,但是trca 比tkprof要简单的多而且分析的结果更全面: 可以从ML的文章:Trace Analyzer TRCANLZR - Interpreting

介绍一款非常好用的10046分析工具--trca(Trace Analyzer),以前分析10046跟踪文件的时候都是使用tkprof 工具,但是trca 比tkprof要简单的多而且分析的结果更全面:
可以从ML的文章:Trace Analyzer TRCANLZR - Interpreting Raw SQL Traces with Binds and/or Waits generated by EVENT 10046 [ID 224270.1] 来下载此工具!
trca.zip 主要包括一下文件
install:
TRCACREA.sql - creates all objects needed by Trace Analyzer by calling other scripts below. 
TRCADROP.sql - drops the schema objects.
TRCAPKGB.sql - creates the package body.
TRCAPKGS.sql - creates the package header (specification). 
TRCAREPO.sql - creates the staging repository.
TRCADIRA.sql - creates the directory object pointing to the place where the trace files exist (only if placing traces on a directory other than user_dump_dest). 
TRCAGRNT.sql - grants privileges needed to use Trace Analyzer
TRCAREVK.sql - revokes privileges granted by TRCAGRNT.
TRCAPURG.sql - purges old SQL traces from the repository. 
TRCATRNC.sql - truncates the staging repository. 
TRCANLZR.sql - main Trace ANalyzer script. that generates the report. 
TRCACRSR.sql - generates report for one cursor. 
TRCAEXEC.sql - generates report for one cursor execution.
 
run:
trcanlzr.sql 用来分析10046产生的跟踪文件的 用法:
trcanlzr.sql  controlfile |跟踪文件名
下面介绍一下trca的安装和使用
进入/trca/install 目录,以sys 用户登录数据库:
sys@RAC> @tacreate.sql
Uninstalling TRCA, please wait
TADOBJ completed.
sys@RAC> 
sys@RAC> WHENEVER SQLERROR EXIT SQL.SQLCODE;
sys@RAC> REM If this DROP USER command fails that means a session is connected with this user.
sys@RAC> DROP USER trcanlzr CASCADE;
sys@RAC> WHENEVER SQLERROR CONTINUE;
sys@RAC> 
sys@RAC> SET ECHO OFF;
TADUSR completed.
TADROP completed.
Specify optional Connect Identifier (as per Oracle Net)
Include "@" symbol, ie. @PROD
If not applicable, enter nothing and hit the "Enter" key
Optional Connect Identifier (ie: @PROD): @rac
Define the TRCANLZR user password (hidden and case sensitive).
Specify TRCANLZR password: --输入用户TRCANLZR的密码
Re-enter password: 
Set up TRCANLZR temporary and default tablespaces
Below are the list of online tablespaces in this database.
Decide which tablespace you wish to create the TRCANLZR tables
and indexes.  This will also be the TRCANLZR user default tablespace.
Specifying the SYSTEM tablespace will result in the installation
FAILING, as using SYSTEM for tools data is not supported.
Wait...
Above is the list of online tablespaces in this database.
Decide which tablespace you wish to create the TRCANLZR tables
and indexes.  This will also be the TRCANLZR user default tablespace.
Specifying the SYSTEM tablespace will result in the installation
FAILING, as using SYSTEM for tools data is not supported.
 
Tablespace name is case sensitive.
Default tablespace [UNKNOWN]: EXAMPLE  --(必须大写,小写会创建失败)
DEFAULT_TABLESPACE
------------------------------
EXAMPLE
Choose the TRCANLZR user temporary tablespace.
Specifying the SYSTEM tablespace will result in the installation
FAILING, as using SYSTEM for the temporary tablespace is not recommended.
Wait...
TABLESPACE_NAME
------------------------------
TEMP
Tablespace name is case sensitive.
Temporary tablespace [UNKNOWN]: TEMP
TEMPORARY_TABLESPACE
------------------------------
TEMP
Type of TRCA repository
Create TRCA repoitory as Temporary or Permanent objects?
Enter T for Temporary or P for Permanent.
T is recommended and default value.
Type of TRCA repository [T]: T
TACUSR completed.
No errors.
SQLT$STAGE: created
SQLT$STAGE: READ,WRITE access granted to TRCANLZR
SQLT$STAGE: write test file tasqdirset.txt
SQLT$STAGE: read test file tasqdirset.txt
SQLT$STAGE: get attributes for file tasqdirset.txt
SQLT$STAGE: /opt/rac/oracle/diag/rdbms/rac/rac1/trace
TRCA$STAGE: created
TRCA$STAGE: READ,WRITE access granted to TRCANLZR
TRCA$STAGE: write test file tasqdirset.txt
TRCA$STAGE: read test file tasqdirset.txt
TRCA$STAGE: get attributes for file tasqdirset.txt
TRCA$STAGE: /opt/rac/oracle/diag/rdbms/rac/rac1/trace
SQLT$UDUMP: created
SQLT$UDUMP: READ access granted to TRCANLZR
SQLT$UDUMP: read test file tasqdirset.txt
SQLT$UDUMP: get attributes for file tasqdirset.txt
SQLT$UDUMP: /opt/rac/oracle/diag/rdbms/rac/rac1/trace
SQLT$BDUMP: created
SQLT$BDUMP: READ access granted to TRCANLZR
SQLT$BDUMP: read test file tasqdirset.txt
SQLT$BDUMP: get attributes for file tasqdirset.txt
SQLT$BDUMP: /opt/rac/oracle/diag/rdbms/rac/rac1/trace
TRCA$INPUT1: created
TRCA$INPUT1: READ access granted to TRCANLZR
TRCA$INPUT1: read test file tasqdirset.txt
TRCA$INPUT1: get attributes for file tasqdirset.txt
TRCA$INPUT1: /opt/rac/oracle/diag/rdbms/rac/rac1/trace
TRCA$INPUT2: created
TRCA$INPUT2: READ access granted to TRCANLZR
TRCA$INPUT2: read test file tasqdirset.txt
TRCA$INPUT2: get attributes for file tasqdirset.txt
TRCA$INPUT2: /opt/rac/oracle/diag/rdbms/rac/rac1/trace
Connected.
 
TAUTLTEST completed.
no rows selected
TACOBJ completed.
tool_owner: "TRCANLZR"
Creating Package Specs TRCA$G
No errors.
Creating Package Specs TRCA$P
No errors.
Creating Package Specs TRCA$T
No errors.
Creating Package Specs TRCA$I
No errors.
Creating Package Specs TRCA$E
No errors.
Creating Package Specs TRCA$R
No errors.
Creating Package Specs TRCA$X
No errors.
Creating Views
Creating Package Body TRCA$G
No errors.
Creating Package Body TRCA$P
No errors.
Creating Package Body TRCA$T
No errors.
Creating Package Body TRCA$I
No errors.
Creating Package Body TRCA$E
No errors.
Creating Package Body TRCA$R
No errors.
Creating Package Body TRCA$X
No errors.
Creating Grants on Packages
Tool Version
----------------
11.4.3.1
Install Date
----------------
20111008
Directories
--------------------------------------------------------------------------------------------------------------------------------
TRCA$INPUT1(VALID)      /opt/rac/oracle/diag/rdbms/rac/rac1/trace
TRCA$INPUT2(VALID)      /opt/rac/oracle/diag/rdbms/rac/rac1/trace
TRCA$STAGE(VALID)       /opt/rac/oracle/diag/rdbms/rac/rac1/trace
user_dump_dest          /opt/rac/oracle/diag/rdbms/rac/rac1/trace
background_dump_dest    /opt/rac/oracle/diag/rdbms/rac/rac1/trace
 
Libraries
--------------------------------------------------------------------------------------------------------------------------------
VALID PACKAGE TRCA$I /* $Header: 224270.1 tacpkgi.pks 11.4.2.7 2011/04/08 csierra $ */
VALID PACKAGE TRCA$E /* $Header: 224270.1 tacpkge.pks 11.4.2.7 2011/04/08 csierra $ */
VALID PACKAGE TRCA$G /* $Header: 224270.1 tacpkgg.pks 11.4.2.7 2011/04/08 csierra $ */
VALID PACKAGE TRCA$P /* $Header: 224270.1 tacpkgp.pks 11.4.1.4 2010/07/12 csierra $ */
VALID PACKAGE TRCA$R /* $Header: 224270.1 tacpkgr.pks 11.4.2.7 2011/04/08 csierra $ */
VALID PACKAGE TRCA$T /* $Header: 224270.1 tacpkgt.pks 11.4.3.1 2011/06/17 csierra $ */
VALID PACKAGE TRCA$X /* $Header: 224270.1 tacpkgx.pks 11.4.2.7 2011/04/08 csierra $ */
VALID PACKAGE BODY TRCA$I /* $Header: 224270.1 tacpkgi.pkb 11.4.2.7 2011/04/08 csierra $ */
VALID PACKAGE BODY TRCA$E /* $Header: 224270.1 tacpkge.pkb 11.4.2.7 2011/04/08 csierra $ */
VALID PACKAGE BODY TRCA$G /* $Header: 224270.1 tacpkgg.pkb 11.4.2.7 2011/04/08 csierra $ */
VALID PACKAGE BODY TRCA$P /* $Header: 224270.1 tacpkgp.pkb 11.4.3.1 2011/06/17 csierra $ */
VALID PACKAGE BODY TRCA$R /* $Header: 224270.1 tacpkgr.pkb 11.4.2.7 2011/04/08 csierra $ */
VALID PACKAGE BODY TRCA$T /* $Header: 224270.1 tacpkgt.pkb 11.4.3.1 2011/06/17 csierra $ */
VALID PACKAGE BODY TRCA$X /* $Header: 224270.1 tacpkgx.pkb 11.4.2.7 2011/04/08 csierra $ */
TACPKG completed.
Taking a snapshot of some Data Dictionary objects, please wait...
19:56:30 => refresh_trca$_dict_from_this
19:56:30 -> purge_trca$_dict
19:56:30 dict_state_before_purge
19:56:30 -----------------------
19:56:30 -> print_dict_state
19:56:30 dict_refresh_days :
19:56:30 dict_refresh_date :
19:56:30 dict_database_id  :
19:56:30 dict_database_name:
19:56:30 dict_instance_id  :
19:56:30 dict_instance_name:
19:56:30 dict_host_name    :
19:56:30 dict_platform.     :
19:56:30 dict_rdbms_version:
19:56:30 dict_db_files     :
19:56:30 <- print_dict_state
19:56:30 -> purge_trca$_dict_gtt
19:56:30 <- purge_trca$_dict_gtt
19:56:30 dict_state_after_purge
19:56:30 ----------------------
19:56:30 -> print_dict_state
19:56:30 dict_refresh_days :
19:56:30 dict_refresh_date :
19:56:30 dict_database_id  :
19:56:30 dict_database_name:
19:56:30 dict_instance_id  :
19:56:30 dict_instance_name:
19:56:30 dict_host_name    :
19:56:30 dict_platform.     :
19:56:30 dict_rdbms_version:
19:56:30 dict_db_files     :
19:56:30 <- print_dict_state
19:56:30 <- purge_trca$_dict
19:56:30 -> trca$_file$
19:56:30 <- trca$_file$ (6 rows)
19:56:30 using serial execution
19:56:30 -> trca$_segments
19:56:31 <- trca$_segments (6040 rows)
19:56:31 -> trca$_extents_dm
19:56:31 <- trca$_extents_dm (0 rows)
19:56:31 -> trca$_extents_lm
19:56:46 <- trca$_extents_lm (10462 rows)
19:56:46 -> trca$_users
19:56:46 <- trca$_users (22 rows)
19:56:46 -> trca$_extents
19:56:46 <- trca$_extents (10374 rows)
19:56:46 -> purge_trca$_dict_gtt
19:56:46 <- purge_trca$_dict_gtt
19:56:46 -> trca$_tables$
19:56:47 <- trca$_tables$ (2857 rows)
19:56:47 -> trca$_indexes$
19:56:48 <- trca$_indexes$ (4855 rows)
19:56:48 -> trca$_ind_columns$
19:56:49 <- trca$_ind_columns$ (7669 rows)
19:56:49 -> trca$_tab_cols$
19:56:51 <- trca$_tab_cols$ (6864 rows)
19:56:51 -> trca$_objects$
19:56:51 <- trca$_objects$ (7690 rows)
19:56:51 -> trca$_parameter2$
19:56:51 <- trca$_parameter2$ (28 rows)
19:56:51 dict_state_after_refresh
19:56:51 ------------------------
19:56:51 -> print_dict_state
19:56:51 dict_refresh_days : 1
19:56:51 dict_refresh_date : 20111008
19:56:51 dict_database_id  : 2350763456
19:56:51 dict_database_name: RAC
19:56:51 dict_instance_id  : 1
19:56:51 dict_instance_name: rac1
19:56:51 dict_host_name    : rac1
19:56:51 dict_platform.     : Linux
19:56:51 dict_rdbms_version: 11.2.0.1.0
19:56:51 dict_db_files     : 200
19:56:51 <- print_dict_state
19:56:51 <= refresh_trca$_dict_from_this
PL/SQL procedure successfully completed.
Snapshot of some Data Dictionary objects completed.
TAUTLTEST completed.
TACREATE completed. Installation completed successfully.
 
创建了trcanlzr用户和分析trace 文件所需要的对象!

转【Oracle】一款非常好用的trace文件分析工具的更多相关文章

  1. 一款好用且免费的语句分析工具Plan Explorer

    在调优过程中的查询语句优化阶段,分析语句的执行计划是必经之路,一款好的执行计划分析工具确实可以帮助我们事半功倍 小贴士:Plan Explorer是将Plan Explorer 专业版与免费版整合在一 ...

  2. Oracle 10046 trace文件分析

    生成10046 trace文件: SQL> create table t10046 as select * from dba_objects; Table created. SQL> se ...

  3. [Oracle运维工程师手记] 如何从trace 文件,判断是否执行了并行

    [Oracle运维工程师手记系列]如何从trace 文件,判断是否执行了并行 客户说,明明指定了并行的hint,OEM 却报说没有并行,并且提供了画面. 客户的SQL文长这样: INSERT/*+ p ...

  4. 几款开源的hybird移动app框架分析

    几款开源的Hybrid移动app框架分析 Ionic Onsen UI 与 ionic 相比 jQuery Mobile Mobile Angular UI 结论 很多移动开发者喜欢使用原生代码开发, ...

  5. 【转载】推荐5款超实用的.NET性能分析工具

    来源:http://www.csdn.net/article/2012-11-23/2812174-5-Good-and-useful-.NET-Profilers 虽然.NET框架号称永远不会发生内 ...

  6. Animo.js :一款管理 CSS 动画的强大的小工具

    Animo.js 是一个功能强大的小工具,用于管理 CSS 动画.它的特色功能包括像堆栈动画,创建跨浏览器的模糊,设置动画完成的回调等等.Animo 还包括惊人的 animate.css,为您提供了近 ...

  7. 推荐25款实用的 HTML5 前端框架和开发工具【下篇】

    快速,安全,响应式,互动和美丽,这些优点吸引更多的 Web 开发人员使用 HTML5.HTML5 有许多新的特性功能,允许开发人员和设计师创建应用程序和网站,带给用户桌面应用程序的速度,性能和体验. ...

  8. Oracle中有个tkprof来格式化oracle的trace文件

    1.MySQL日志文件系统的组成2.慢查询日志3.慢查询日志演示long_query_time : 设定慢查询的阀值,超出次设定值的SQL即被记录到慢查询日志,缺省值为10sslow_query_lo ...

  9. [原创]推荐一款强大的.NET程序内存分析工具.NET Memory Profiler

    [原创]推荐一款强大的.NET程序内存分析工具.NET Memory Profiler 1 官方网站:http://memprofiler.com/2 下载地址:http://memprofiler. ...

随机推荐

  1. 管道pipe与dup结合使用,应用实例

    管道的一种常见用法:在父进程创建子进程后向子进程传递参数.例如,一个应用软件有一个主进程和很多个不同子进程. 主进程创建子进程后,在子进程调用exec函数执行一个新程序前,通过管道给即将执行的程序传递 ...

  2. VGA

    VGA(Video Graphics Array )视频图形阵列,是IBM在1987年随PS/2机一起推出的一种视频传输标准,具有分辨率高.显示速率快.颜色丰富等优点,在彩色显示器领域得到了广泛的应用 ...

  3. linux page table entry struct

    Page Table Entry The access control information is held in the PTE and is CPU specific; figure bit f ...

  4. 猎豹浏览器(chrome内核)屏蔽视频广告

    1.基于猎豹浏览器(原则上chrome内核浏览器都可以) 2.下载插件Adblock Plus,下载地址:http://chromecj.com/productivity/2014-07/24/dow ...

  5. python随机数,随机选择……random

    import random from random import random, uniform, randint, randrange, choice, sample, shuffle list = ...

  6. strtus2 文件上传

    struts2和spring mvc上传都是用 common-fileupload来实现 1.struts2上的方式需要在对应的Action,加上如下的属性以及get/set方法 private Fi ...

  7. 卡巴斯基KAV2013 – 免费一年 (六一活动)

    赠送时间:2013年5月31日10时 至 2013年6月1日24时赠送产品:卡巴斯基反病毒软件2013(一年版)赠送方式:产品激活码将以电邮方式发送到您提交信息的邮箱里,每个邮箱仅能领取一个激活码.温 ...

  8. Wrapper class webservice.jaxws.SayHi is not found. Have you run APT to generate them?

    最近在研究webservice,利用jdk来实现简单的webservice发布,但是运行时却发生了这样的异常,如下: Exception in thread "main" com. ...

  9. 各种C#数组的定义和初始化

    各种C#数组的定义和初始化2009-08-26 18:28 岁月联盟 字号:T | T一键收藏,随时查看,分享好友!本文介绍了C#数组定义和初始化,包括一维数组.交错数组和多维数组,供大家参考.AD: ...

  10. 为iOS设计:图形和性能

    在之前的文章里,我们探讨了基于多种不同技术来实现自定义的UIButton,当然不同的技术所涉及到的代码复杂度和难度也不一样.但是我也有意提到了基于不同方法的实现所体现出的性能表现也不一一相同. [在屏 ...