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: SQL Response Time

Re: SQL Response Time

From: Billy <vslabs_at_onwe.co.za>
Date: 21 Jun 2005 22:23:02 -0700
Message-ID: <1119417782.690930.264880@g14g2000cwa.googlegroups.com>


Brian wrote:
> I have a small database (about 4 gig total) that generates web pages
> through mod_plsql. The DB gets hit by 30 users 10 hours a day pretty
> regularly.

Good man. mod_plsql is in many ways far superior than using Java on an app tier for web reporting.

> What I don't understand is why OEM now reports 'SQL Response'
> time increasing from about 30 to 150. Is this because of the larger
> buffer cache?

The slowest most expensive operation in a database is i/o. There are three elementary ways to address this. Less i/o obviously (which is not always that obvious when looking at the SQL logic of some code). Making i/o cheaper by reducing physical i/o (PIO) to logical i/o (LIO) using a larger buffer cache. And making i/o faster (bigger pipes, better RAID, etc.)

It would therefore seem that you have reduced the POIs on your database.

--
Billy
Received on Wed Jun 22 2005 - 00:23:02 CDT

Original text of this message

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