Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Oracle Brain Teaser
> What I cant understand is that when I list CPU intensive SQL
> statements (i.e. Logical I/Os per executions), I am seeing some SQL
> which generates over 30,000 LIOs per execution. Now with a buffer
> cache of only 200 buffers, I would expect the hit ratio for this
> statement to be very poor.
Hi!
It means that your statement is looping tightly on mostly the same data. Can happen with some nested loops for example or connect by queries etc... So if you or your boss are into hit ratio tuning rather than performance tuning, you should regularly run some tight loops accessing the same set of data to keep your ratios on nice 99,9% ;)
Tanel. Received on Thu Aug 07 2003 - 05:11:40 CDT