Information: If you are seeing below error while starting MRP process means currently your MRP process is running. check MRP process status using below sql.
SQL> select process, status, sequence# from v$managed_standby where process in ('MRP0','RFS'); PROCESS STATUS SEQUENCE# --------- ------------ ---------- MRP0 APPLYING_LOG 18 RFS IDLE 18 RFS IDLE 0 RFS IDLE 0
Note: if you want start it again then cancel it and start it again using below sql
SQL> alter database recover managed standby database cancel; Database altered. SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING CURRENT LOGFILE DISCONNECT FROM SESSION; Database altered.
No comments:
Post a Comment