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

Oracle
Oracle数据库索引创建要做到三个适当
解析Oracle中的概念:同义词、序列与视图
讲解七种数据库中Select Top的使用方法
浅谈在Windows环境下Kill掉Oracle的线程
OracleDatabaseLinks的实现方法
合理创建Oracle数据库的索引
关于PGA的功能
Oracle教程:SecureFile的功能
Oraclesequence在Hibernate如何使用
找回消失的联机日志文件
控制文件对于Oracle的重要性
对于Oracle的错误印象
Oracle批量fetch的小技巧
如何彻底的删除Oracle表
Oracle数据库中创建合理的数据库索引
Oracle数据库中数据如何存储
解决Oracle性能优化中的问题
Oracle 基本知识轻松学
Oracle认证:利用bulkcollect实现cursor批量fetch
控制文件多路复用保证Oracle数据库正常运行

Performance Improvement Tips for Oracle on UNIX


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-31   浏览: 38 ::
收藏到网摘: 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