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: Regarding the number of consistent gets.

Re: Regarding the number of consistent gets.

From: <Magvivek_at_gmail.com>
Date: 19 Sep 2005 06:17:52 -0700
Message-ID: <1127135872.556280.100140@o13g2000cwo.googlegroups.com>


consistent gets is the blocks in consistent mode (sometimes reconstructed using information from RBS) So this reconstruction from RBS takes more resources (reads actually), which will end up as high consistent gets.

db block gets is the blocks in current mode (whatever it is NOW).

scott_at_9i > set autotrace traceonly statistics scott_at_9i > select * from emp;

14 rows selected.

Statistics


          0  recursive calls
          0  db block gets
         19  consistent gets
          0  physical reads
          0  redo size
       1495  bytes sent via SQL*Net to client
        655  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
         14  rows processed

--

scott_at_9i > /

14 rows selected.

Statistics


          0  recursive calls
          0  db block gets
         34  consistent gets
          0  physical reads
         52  redo size
       1495  bytes sent via SQL*Net to client
        655  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
         14  rows processed

--

14 rows selected.

Statistics


          0  recursive calls
          0  db block gets
         19  consistent gets
          0  physical reads
          0  redo size
       1462  bytes sent via SQL*Net to client
        655  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
         14  rows processed
Received on Mon Sep 19 2005 - 08:17:52 CDT

Original text of this message

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