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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Anywy to accurately predict time for long running queries?

RE: Anywy to accurately predict time for long running queries?

From: Cary Millsap <cary.millsap_at_hotsos.com>
Date: Tue, 10 Feb 2004 11:01:30 -0600
Message-ID: <021f01c3eff7$c237c020$6701a8c0@CVMLAP02>


Ryan,

A couple of things to think about....

Count the LIOs and PIOs that a job requires. This will probably be some function of the number of rows the job processes. Compute the average LIO and PIO latencies for your system. Use the rough response time estimate R = est_LIO_count * avg_LIO_latency + est_PIO_count * avg_PIO_latency.

If you're *writing* the app yourself, then consider using the Oracle long-ops stuff. I can't remember how to access it (and my network connection is too slow to look it up right now). For example, if you have a PL/SQL loop that goes through something N times, then you update the progress meter every so often (say on iterations N/10, 2N/10, 3N/10, ...) so your user will know approximately how far along the program has gotten.

Cary Millsap
Hotsos Enterprises, Ltd.
http://www.hotsos.com
* Nullius in verba *

Upcoming events:
- Performance Diagnosis 101: 2/24 San Diego, 3/23 Park City, 4/6 Seattle

-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of ryan.gaffuri_at_cox.net Sent: Tuesday, February 10, 2004 7:10 AM To: oracle-l_at_freelists.org
Subject: Anywy to accurately predict time for long running queries?

People here want me to accurately predict how long it will take long running SQL to execute. I'm reading carrie milsap's book now, and I believe he has some methods that give good estimates on overall performance(I have not gotten to that part yet).

any known methods to accurately predict sql? BTW, I dont have specs on the hardware, its a customer site... and yes I know you really need that.

I dont think this is doable, but im wondering if anyone has put together any papers on the subject.



Please see the official ORACLE-L FAQ: http://www.orafaq.com

To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-----------------------------------------------------------------

----------------------------------------------------------------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
----------------------------------------------------------------
To unsubscribe send email to:  oracle-l-request_at_freelists.org
put 'unsubscribe' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-----------------------------------------------------------------
Received on Tue Feb 10 2004 - 11:01:30 CST

Original text of this message

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