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: Grant SYS.x$KCCCP to DBA..........................

Re: Grant SYS.x$KCCCP to DBA..........................

From: Satheesh Babu.S <satheesh.babu_at_iflexsolutions.com>
Date: 25 Aug 2004 23:33:56 -0700
Message-ID: <c8292b82.0408252233.30b18403@posting.google.com>


Unfortunately the columns in X$KCCCP is not exposed in any other v$ views. But this view doesn't have any information to tune. If you want to find out cpodr_bno value through some other v$ views, there is a indirect way. But checkpoint should happen only during the logswitch.
Try this,
alter system switch logfile;
alter system checkpoint;

select actual_redo_blks from v$instance_Recovery;

This will be *approximately* equal to

select cpodr_bno from x$kcccp;

But why???
Since you increasing the checkpoint interval you are actually putting your db in risk. Ofcourse with no use.

Thanks and Regards,
Satheesh Babu.S Received on Thu Aug 26 2004 - 01:33:56 CDT

Original text of this message

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