当前位置: 首页 > 图文教程 > 数据库 > Oracle > Performance Improvement Tips for Oracle on UNIX

Oracle
理解SCN与TimeStamp的相互转换
用OMS来实现Oracle数据备份的方法
详细介绍Oracle数据库的启动和关闭
Oracle数据库重做日志文件丢失后的恢复
检测Oracle的可用性和表空间容量
oracle的long类型字段的应用
把数据从MySQL迁到Oracle的几点注意事项
没有Oracle客户端系统移植的三种方法
Oracle监听器服务不能启动的7步解决法
Oracle 10g的自动段空间管理(ASSM)
Oracle运行速度与效率高的秘密
Oracle实现自增型ID和删除重复记录
Oracle数据库存储过程的6个问题
Oracle 10G里手工建库的全过程
Oracle 10g手工创建数据库个人经验
redhat linux 下安装oracle 10g 的方法
Oracle静态注册和动态注册
Oracle数据更改后出错
JSP+Oracle简便通用的表单数据存储处理方法
Oracle 10g实用程序trcsess:跟踪sql语句

Performance Improvement Tips for Oracle on UNIX


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-31   浏览: 44 ::
收藏到网摘: n/a

TIMED_STATISTICS = true

  1. Restart your database. 
  2. Run your application.
  3. Run tkprof against the tracefile created by your application:

tkprof EXPLAIN=username/passwd

  1. Look at formatted output of trace command and make sure that your

      SQL statement is using indexes correctly.  Refer to DBA guide for a list

      of rules that the oracle optimizer uses when choosing a path for a SQL statement. 

                 <<<<<< OUTPUT OF TKPROF FILE >>>>>>> 

count   = number of times OPI procedure was executed 

cpu     = cpu time executing in hundredths of seconds 

elap    = elapsed time executing in hundredths of secs 

phys    = number of physical reads of buffers (from disk) 

cr      = number of buffers gotten for consistent read 

cur     = number of buffers gotten in current mode (usually for update) 

rows    = number of rows processed by the OPI call 

===========================================================

select * from emp where empno=7369  

            count     cpu    elap    phys      cr     cur    rows 

Parse:          1       0       0       0       0       0 

Execute:        1       0       0       0       0       2       0 

Fetch:          1       0       0     219     227       0       2 

Execution plan: 

TABLE ACCESS (FULL) OF EMP 

===========================================================

select empno from emp where empno=7934  

            count     cpu    elap    phys      cr     cur    rows 

Parse:          2       0       0       0       0       0 

Execute:        2       0       0       0       0       2       0 

Fetch:          2       0       0       0&nb