DBA Hub

📋Steps in this guide1/1

utilization of current redo log ( in % )

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 /

oracle configurationintermediate
by OracleDba
12 views
1

utilization of current redo log ( in % )

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
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
/

Comments (0)

Please to add comments

No comments yet. Be the first to comment!