How to Generating an Oracle Trace File --MRO software..wmc

Overview : You can generate a log of Oracle statements being executed on the server. This trace file is very useful in diagnosing performance problems. Oracle's utility, tkprof, can be used to sort commands. You can also request the execution plan of the statements.
Procedure

1. Enable timed statistics
Modify the initxxx.ora file for your database instance to include timed_statistics with the following parameter. You must shutdown and restart the database for this parameter to take effect.
timed_statistics=true
2. Trace all sessions
To trace all sessions, set SQL_TRACE in the initxxx.ora file to TRUE. If you are trying to diagnose a specific error then open the .trc file with a text editor and search for err='Oracle error number without the leading zeros'
3. Trace a specific session
MAXIMO 4.x

Start the MAXIMO application you wish to trace.

Determine the process id of the workstation you want to trace.

select sid, serial# from v$session where username='maximoschema' and machine='hostname';

Start the trace:

exec dbms_system.set_sql_trace_in_session (sid, serial#, TRUE);
note: the procedure can be run as sys. You may need to grant execute to system on dbms_system.

Run the MAXIMO process you wish to trace.

Stop the trace:

exec dbms_system.set_sql_trace_in_session (sid, serial#, FALSE);


MAXIMO 5.x

You cannot trace a specific session in MAXIMO 5.x.



4. Generate the results using tkprof

Format the results of the trace file with ORACLE's TKPROF utility. You will want to sort either by total CPU time SORT=(PRSCPU,EXECPU,FCHCPU) or by total elapsed time SORT=(PRSELA,EXEELA,FCHELA)

By turning on tracing within MAXIMO and running TKPROF, you will be able to see exactly which SQL statements generated by MAXIMO are the long-running statements. You can run the TKPROF utility using the EXPLAIN PLAN option which will show you the path that the optimizer uses for each particular SQL statement. The goal is to discover why particular SQL statements are taking so long to run.


Example:

tkprof ora_213999.trc ora_213999.out sys=no sort=execpu explain=maximo/maximo@tns:maxdb

Performance issues to consider (1) optimization mode (cost vs rule) (2) missing indexes (3) database table and index fragmentation (4) other processes running on the database server (5) server resource limitations reached: memory, file throughput, CPU speed.


Note: Increasing the size of Oracle trace files

You may need to increase the size of the trace file.

To determine the current setting:

SELECT NAME,VALUE FROM V$PARAMETER WHERE NAME = 'max_dump_file_size';

To increase it:

ALTER SYSTEM SET MAX_DUMP_FILE_SIZE = nnM SCOPE = MEMORY;

where size can be nnK nnM or UNLIMITED

and SCOPE can be:

MEMORY - For dynamic parameters. Change is immediate but does not persist across shutdown.
SPFILE - For static or dynamic parms. Change goes into affect after a shutdown/restart. Static parms can only use this one.
BOTH - For dynamic parms. Put into affect immediately and make it permanent.

posted on 2006-02-09 15:51 大树 阅读(485) 评论(0)  编辑  收藏


只有注册用户登录后才能发表评论。


网站导航:
 
<2006年2月>
2930311234
567891011
12131415161718
19202122232425
2627281234
567891011

导航

统计

公告

本期话题
能源行业资产管理咨询
资产管理信息化方案提供
资产管理相关行业培训
大型企业软件体系架构整合
资产管理信息系统实施
信息集成
信息孤岛

常用链接

留言簿(6)

随笔档案(45)

文章档案(7)

新闻档案(1)

相册

wallgate management consulting

最新随笔

搜索

最新评论

阅读排行榜

评论排行榜