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

Oracle
Weblogic8配置Oracle数据库连接池
步步为营完全删除Oracle数据库的方法
Oracle在Linux操作系统下安装小结
以最短的宕机时间升级到Oracle 10g
Oracle 数据库的配置方案 完全分析
ORA-12154: TNS: 无法解析指定的连接标识符
oracle的net configure assistant使用过程
利用Oracle管理服务器将数据导入导出
如何在Python下连接Oracle数据库
Oracle数据库中高级复制的功能介绍
Oracle10g中过程(PROCEDURE )重建的增强
library cache pin与PROCEDURE的重建
Oracle数据库字符集转换规律全面剖析
Oracle的恢复管理器及DBMS_JOB包分析
Oracle 9i数据库中动态重配置深入分析
Oracle数据库常见错误操作及解决方案
在操作系统损坏时恢复Oracle10g全过程
oracle用存储过程加密一段字符串(3des算法)
简述数据库导入Oracle SQL*Loader指南
如何在Oracle 10g中通过网络连接导入数据

Performance Improvement Tips for Oracle on UNIX


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