Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Weird performance issue ....

Re: Weird performance issue ....

From: Egor Starostin <egorst_at_gmail.com>
Date: 3 Oct 2005 10:28:32 -0700
Message-ID: <1128360512.605337.131690@f14g2000cwb.googlegroups.com>


> server and over 12 seconds on the customer server. And increasing
> exponentially as new data is added. The 2 servers show the same explain
> plan.

Explain plan is not enough for this.

Here's the steps which help you to understand where is the difference between DEV and customer's servers.

Create a simple script like this:

--
alter session set timed_statistics=true;
alter session set max_dump_file_size=unlimited;
alter session set events '10046 trace name context forever, level 8';
< your script here >
alter session set events '10046 trace name context off';
--
and run it both on DEV and on customer servers.
Get your trace files from user_dump_dest and analyze them with my
profiler OraSRP (link in signature).

After that you will have a 'session profile' for both sessions. Compare
them to find where exactly is the difference between DEV server and
customer server.


--
Egor
http://www.oracledba.ru/orasrp/
Free Oracle Session Resource Profiler
Received on Mon Oct 03 2005 - 12:28:32 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US