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

Oracle
Oracle Jdbc的一些限制(10.2.0.1)
使用Instr()与decode()进行多条件组合查询
修改ORACLE的DATAFILE文件名
Oracle中向视图中插入数据
oracle中实现自动增长列
oracle同时向多表插入数据
建立与Oracle服务器连接的两种连接模式
oracle中的connect by 在sql server中实现
Oracle巧取指定记录与巧用外关联查询
如何杀死oracle死锁进程
Oracle数据直接导出到文本文件的方法
在ORACLE中实现SELECT TOP N的方法
教你用Oracle解析函数快速检查序列间隙
教你在Oracle中启动脚本跟踪存储过程
Oracle Peeking绑定变量的控制
在Oracle实例间移动SQL调整工具集
使用DBMS_METADATA包获得对象DDL
使用Oracle 10gMERGE语句更新数据行
在不同字符集的数据库之间导入数据的方法
介绍Oracle数据库去除别名的方法

Performance Improvement Tips for Oracle on UNIX


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