January 2012
Intermediate to advanced
542 pages
11h 28m
English
In this recipe, we will see how to monitor redo logs.
The following steps will demonstrate monitoring of redo logs:
SYSDBA:
CONNECT / AS SYSDBA
V$SYSTEM_EVENT dynamic performance view:SELECT EVENT, TOTAL_WAITS, TIME_WAITED FROM V$SYSTEM_EVENT WHERE EVENT LIKE 'log file%';
COL MEMBER FOR A40 SELECT * FROM V$LOGFILE; CLEAR COL
SELECT * FROM V$LOG;
SELECT * FROM V$LOG_HISTORY ORDER BY RECID;
In step 2, we query the V$SYSTEM_EVENT dynamic performance view to inspect problems related to redo logs. ...
Read now
Unlock full access