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

Oracle
教你应对Oracle检索数据的一致性以及回滚数据
美国家庭影院频道成功实施Oracle套件
Oracle学习教程
利用oracle外部表查看报警信息
合理设置临时表空间确保Oracle数据库正常运行
Oracle数据库如何处理临时数据?
ORACLE报警日志如何查看?
Oracle教程:如误添加数据文件如何删
Oracle10gR2上遇到了Mutex竞争的问题
Oracle教程:讲述表与表见得连接
Oracle教程:修改初始化参数
Oracle教程:工具kfod的使用
Oracle数据库是如何进制转换的
两种方法来组织Oracle数据库中的数据
Oracle教程:如何将数据文件移到新区
三要素助你在Oracle中创建索引
如何将各种数据库连接起来?
Oracle数据库导入外部数据如何实现
Oracle数据库的输出方法调试
Oracle教程:数据的复制

Performance Improvement Tips for Oracle on UNIX


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