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: How to find out changed blocks??

Re: How to find out changed blocks??

From: tae sik <tshan_at_kofex.com>
Date: Fri, 17 Apr 1998 10:02:10 +0900
Message-ID: <3536AA12.3F9482D0@kofex.com>


To see the status of database block buffer cache in the SGA, you can query to 'X$BH'.
Determining the size of DB_BLOCK_BUFFERS parameter I usually used following SQL statement as logged in SYS.

select decode (state, 0, 'Free', 1, 'Read and Modified', 2, 'Read and not Modified', 3, 'Currently Being Read', 'Other'), count(*) from x$bh
group by decode (state, 0, 'Free', 1, 'Read and Modified', 2, 'Read and not Modified', 3, 'Currently Being Read', 'Other'); Received on Thu Apr 16 1998 - 20:02:10 CDT

Original text of this message

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