Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Slow Oracle Update only under load
fsa3_at_optonline.net wrote:
> Hi all,
>
> I'm load testing an application and found that an oracle update query
> made via JDBC by the app is taking between 2-20 seconds under 100 user
> load. With 1 user load the same query takes 0.05 seconds. The query
> is basically:
>
> Update mytable set colA=?, colB=?, BLOBCOL=<blob> where mytablekey = ?
>
> High level system statistics look fine. I'm not very knowledgeable in
> tuning oracle so I'm coming here for some next things to look at. What
> are common tuning parameters to solve an issue of a query that is
> normally fast but slow under load.
>
> Thanks in advance.
>
Oracle version?
Are statistics, created with DBMS_STATS current?
Is there an index on mytablekey? I presume so from the name but is there?
What is the real SQL? What is the source of the BLOB?
-- Daniel A. Morgan http://www.psoug.org damorgan_at_x.washington.edu (replace x with u to respond)Received on Thu Nov 17 2005 - 21:36:18 CST