Skip to main content

Verify Media recovery from Oracle 12c V$RECOVERY_PROGRESS



SQL> select * from  V$RECOVERY_PROGRESS order by START_TIME;

START_TIME         TYPE            ITEM                      UNITS           SOFAR      TOTAL TIMESTAMP          COMMENTS            CON_ID
------------------ --------------- ------------------------- ---------- ---------- ---------- ------------------ --------------- ----------
26-APR-16          Media Recovery  Active Apply Rate         KB/sec            878        878                                             0
26-APR-16          Media Recovery  Redo Applied              Megabytes         428        428                                             0
26-APR-16          Media Recovery  Maximum Apply Rate        KB/sec           2052       2052                                             0
26-APR-16          Media Recovery  Log Files                 Files              19         19                                             0
26-APR-16          Media Recovery  Active Time               Seconds          5210       5210                                             0
26-APR-16          Media Recovery  Elapsed Time              Seconds         86941      86941                                             0
26-APR-16          Media Recovery  Average Apply Rate        KB/sec              5          5                                             0
26-APR-16          Media Recovery  Apply Time per Log        Seconds           274        274                                             0
26-APR-16          Media Recovery  Last Applied Redo         SCN+Time            0          0 27-APR-16          SCN: 11255941            0
27-APR-16          Media Recovery  Redo Applied              Megabytes         314          0                                             0
27-APR-16          Media Recovery  Maximum Apply Rate        KB/sec           2236          0                                             0
27-APR-16          Media Recovery  Log Files                 Files              45          0                                             0
27-APR-16          Media Recovery  Last Applied Redo         SCN+Time            0          0 28-APR-16          SCN: 11432368            0
27-APR-16          Media Recovery  Elapsed Time              Seconds         47293          0                                             0
27-APR-16          Media Recovery  Checkpoint Time per Log   Seconds             0          0                                             0
27-APR-16          Media Recovery  Average Apply Rate        KB/sec              6          0                                             0
27-APR-16          Media Recovery  Apply Time per Log        Seconds            63          0                                             0
27-APR-16          Media Recovery  Active Time               Seconds          2932          0                                             0
27-APR-16          Media Recovery  Standby Apply Lag         Seconds             1          0                                             0
27-APR-16          Media Recovery  Active Apply Rate         KB/sec            817          0                                             0

Comments

Popular posts from this blog

ORA-65139: Mismatch between XML metadata file and data file

Error: CDB$ROOT@EBTUPRDC> CREATE PLUGGABLE DATABASE EBTUSPRDPDB1 using '/home/oracle/EBTUSPRDC.xml' nocopy tempfile reuse; CREATE PLUGGABLE DATABASE EBTUSPRDPDB1 using '/home/oracle/EBTUSPRDC.xml' nocopy tempfile reuse * ERROR at line 1: ORA-65139: Mismatch between XML metadata file and data file /u05/odb/ORADATA_1/EBTUSPRDC/datafile/system.1531.807800993 for value of fcpsb (2230502002 in the plug XML file, 2230505492 in the data file) Fix: Don't open Non-CDB database until we complete pdb creation other wise we will get above error. Shutdown immediate; startup mount; alter database open read only; create xml file. shutdown immediate; Connect to CDB and Create Pluggable database .

Useful OEM Queries to get Target details from OEM Repository

List Targets with TNS Listener ports configured : SELECT mgmt$target.host_name , mgmt$target.target_name , mgmt$target.target_type , mgmt$target_properties.property_name , mgmt$target_properties.property_value FROM mgmt$target , mgmt$target_properties WHERE ( mgmt$target.target_name = mgmt$target_properties.target_name ) AND ( mgmt$target.target_type = mgmt$target_properties.target_type ) and ( mgmt$target.target_type = 'oracle_listener' ) and ( mgmt$target_properties.property_name = 'Port' ); Devora02       LISTENER_ora02                       oracle_listener Port 1529 Devora01       LISTENER_ora01                       oracle_listener Port 1529 Devora04       LISTENE...

TFA-00002 : Oracle Trace File Analyzer (TFA) is not running

TFA Failed to start listening for commands on one of the Rac Node : As a root user /etc/init.d/init.tfa  start Starting TFA.. start: Job is already running: oracle-tfa Waiting up to 100 seconds for TFA to be started.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Successfully started TFA Process.. . . . . . TFA-00002 : Oracle Trace File Analyzer (TFA) is not running TFA Failed to start listening for commands Solution : run synctfanodes.sh  if you have root password . if no root password copy below files to TFA Failed node and try to restart TFA .. Please check whether these 4 files exist on all nodes are similar. TFA_HOME/server.jks TFA_HOME/client.jks TFA_HOME/internal/ssl.properties   TFA_HOME/internal/ portmapping.txt If not similar just copy these files to TFA Failing node and try TFA Restart ..It Worked for me .   [root@host01]# ./tfactl  -v "debug" start Starting TFA...