Build an Oracle DBA on a firm foundation of sound practices and technical knowledge!
Monday, September 08, 2008
check current redo log file usage
-- Percentage full of the current redo log file. SELECT ROUND((cpodr_bno/lesiz),2)*100||'%' PctCurLogFull FROM X$kcccp a, X$kccle b WHERE a.cpodr_seq = leseq; PCTCURLOGFULL --------------- 35%