You would see this warning message in the alert log file starting 12.1.0.2 Oracle Standby Databases when starting the MRP process using below command for real-time apply.
SQL> recover managed standby database using current logfile disconnect from session;
Media recovery complete.
SQL>
From alert log:
Warning: ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING CURRENT LOGFILE has been deprecated.
Warning: ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING CURRENT LOGFILE has been deprecated.
ALTER DATABASE RECOVER managed standby database using current logfile disconnect from session
Instead, you should now being using the below command in 12c.
SQL> recover managed standby database cancel;
Media recovery complete.
SQL>
SQL> alter database recover managed standby database disconnect nodelay;
Database altered.
SQL>
NAME INSTANCE_NAME STATUS OPEN_MODE DATABASE_ROLE
--------- ---------------- ------------ -------------------- ----------------
CDB1 cdbad1 OPEN READ ONLY WITH APPLY PHYSICAL STANDBY
CDB1 cdbad2 OPEN READ ONLY WITH APPLY PHYSICAL STANDBY
Hope it helps, subscribe to this blog to stay updated on latest Oracle Technologies and new articles.
Twitter : @rajsoft8899
Linkedin : https://www.linkedin.com/in/raj-kumar-kushwaha-5a289219/
Very helpful.. Thanks
ReplyDeleteGlad to know you liked it, thanks !
Delete