Blog
Convert Physical Standby database to Active Dataguard
- January 19, 2021
- Posted by: Ankush Thavali
- Category: Oracle DBA
No Comments
Active dataguard means, the standby database is open with read only mode, even when redo logs are getting applied in real time.
Below are the benefit of using active dataguard.
- Reporting queries can be offloaded to standby database.
- Physical block corruptions are repaired automatically either at primary or physical standby database.
- RMAN backups can be initiated from standby , instead of primary which will reduce cpu load from primary.

NOTE – To use active dataguard, you need additional license from oracle
1. Cancel the media recovery on physical standby.
SQL> alter database recover managed standby database cancel;
2. Open the database[PHYSICAL STANDBY]
SQL> alter database open; Database altered.
3. Start media recovery with real-time log apply[PHYSICAL STANDBY]
SQL> alter database recover managed standby database using current logfile disconnect from session; Database altered.
4. Check the database status:[PHYSICAL STANDBY]
SQL> select name,open_mode from v$database; NAME OPEN_MODE --------- -------------------- PRODDB READ ONLY WITH APPLY SQL> select process,status,sequence# from v$managed_standby; PROCESS STATUS SEQUENCE# --------- ------------ ---------- ARCH CONNECTED 0 ARCH CONNECTED 0 ARCH CONNECTED 0 ARCH CONNECTED 0 ARCH CONNECTED 0 RFS IDLE 0 RFS RECEIVING 510 RFS IDLE 0 RFS IDLE 4178 MRP0 APPLYING_LOG 510 --->>>> MRP PROCESS
active data guard 11g features
active data guard commands
active data guard vs data guard
active data guard vs physical standby
alter database activate standby database
alter database convert to primary
change database_role
convert physical standby to snapshot standby
convert snapshot standby to primary database
data guard architecture in oracle 12c
data guard broker active data guard
data guard dbaclass
database_role v$database
disable active data guard 12c
fal_server
how to add standby redo log files in rac
how to check if data guard is enabled
oracle active data guard 19c
oracle active data guard vs data guard
oracle data guard 19c
oracle data guard architecture
oracle data guard steps 11g
oracle golden gate
oracle real application clusters
oracle snapshot standby 19c
physical standby to snapshot
snapshot standby database license
srvctl modify database read only
start mrp process standby database 12c
what is snapshot database