Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Slow running jobs
Russ,
The same cursor can easily vary in time when bind variables change. The bind variable might be going into an index, which then results in a read from disk for each record matching the bind variable. The number of records matching the bind variable will affect the query time. For example (pretend of course):
I have a table of bank account balances, with 50 entries in January, 10 entries in February and 300 entries in March. I have an index on month. When I say "select sum(how_rich_am_i) from my_bank_account where month = :b1" and b1 is Feb then 50 records must be located and aggregated, when b1 is Mar then 300 records must be located and aggregated.
Unfortunaltely this is indicative of normal behaviour. Of course if the query takes a different time with the same bind variable values then it most likely indicates either a caching side-effect or some other load on the machine besides your query.
Regards,
Mark.
"Brooks, Russ" <Russ.Brooks_at_d To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com> ayzim.com> cc: Sent by: Subject: Slow running jobs root_at_fatcity.c om 12/03/2003 03:34 Please respond to ORACLE-L
Hi,
We're having slow response on some batch jobs in our production system.
A straight SQL trace shows intermittant slow response times on selects
against a variety of tables. What is odd is:
The other thing I did was run a 10046 level 8 trace for about 20 seconds. I saw 22 log file sync's in that period in the trace file.
Any thoughts welcome.
Russ
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<---->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Privileged/Confidential information may be contained in this message.
If you are not the addressee indicated in this message (or responsible for delivery of the message to such person), you may not copy or deliver this message to anyone. In such case, you should destroy this message and kindly notify the sender by reply e-mail or by telephone on (61 3) 9612-6999. Please advise immediately if you or your employer does not consent to Internet e-mail for messages of this kind. Opinions, conclusions and other information in this message that do not relate to the official business of Transurban City Link Ltd shall be understood as neither given nor endorsed by it. <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<---->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Mark Richard INET: mrichard_at_transurban.com.au Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Tue Mar 11 2003 - 17:28:53 CST
![]() |
![]() |