Home » RDBMS Server » Server Administration » Online Redo Log, changes in
Online Redo Log, changes in [message #61240] Wed, 07 April 2004 02:11 Go to next message
Eric Langager
Messages: 38
Registered: April 2004
Location: Beijing, China
Member
Greetings.... wondering if anyone knows a view that can tell me what percentage of an online redo log file has been filled.  Thanks
Re: Online Redo Log, changes in [message #61248 is a reply to message #61240] Wed, 07 April 2004 21:10 Go to previous messageGo to next message
ora9iDBA
Messages: 31
Registered: March 2003
Member
select
le.leseq "Current log sequence No",
100*cp.cpodr_bno/le.lesiz "Percent Full",
cp.cpodr_bno "Current Block No",
le.lesiz "Size of Log in Blocks"
from
x$kcccp cp,
x$kccle le
where
LE.leseq =CP.cpodr_seq
and bitand(le.leflg,24)=8;
Re: Online Redo Log, changes in [message #61249 is a reply to message #61248] Wed, 07 April 2004 21:24 Go to previous messageGo to next message
Anatol Ciolac
Messages: 113
Registered: December 2003
Senior Member
I have a question to Kishor Bhalwankar: where you are finded description of x$ tables. I understand that this is views, that contain useful information but cannot find documentation about them.
Re: Online Redo Log, changes in [message #61250 is a reply to message #61249] Wed, 07 April 2004 21:54 Go to previous messageGo to next message
ora9iDBA
Messages: 31
Registered: March 2003
Member
These view are undocumented views...
Re: Online Redo Log, changes in [message #61252 is a reply to message #61250] Wed, 07 April 2004 22:36 Go to previous messageGo to next message
Anatol Ciolac
Messages: 113
Registered: December 2003
Senior Member
Yes, of course - they era undocumented. But i doesn't mean that knowlegde of them is restricted or inutil. I want to understand them, how they are fonctioning, what propreties are, and how possible to utilize them.
Re: Online Redo Log, changes in [message #61256 is a reply to message #61252] Wed, 07 April 2004 23:31 Go to previous messageGo to next message
ora9iDBA
Messages: 31
Registered: March 2003
Member
search asktom and google... You will find a lot
Re: Online Redo Log, changes in [message #61260 is a reply to message #61252] Thu, 08 April 2004 01:22 Go to previous message
ora9iDBA
Messages: 31
Registered: March 2003
Member
Go for following book :
Oracle8i Internal Services by Steve Adams

It will help u a lot.
Previous Topic: Briefly explain Schema in oracle
Next Topic: How to find the size of an index
Goto Forum:
  


Current Time: Fri Sep 20 12:41:57 CDT 2024