How To Configure Step By Step Oracle DGMGRL Utility | Karan Rajpoot
In my previous blog, We saw the configuration steps of the data guard setup . In this blog, we will see the configuration of DGMGRL Oracle utility. let's start the configuration. Step 1) First we should check the DB name, DB unique name, open_mode, database_role of both the servers. Primary Server: - SQL> select name, db_unique_name,open_mode,database_role, flashback_on from v$database; NAME DB_UNIQUE_NAME OPEN_MODE DATABASE_ROLE FLASHBACK_ON --------- ------------------------------ -------------------- ---------------- ------------------ PROD prod READ WRITE PRIMARY YES Standby Server: - SQL> select name, db_unique_name,open_mode,database_role, flashback_on from v$database; NAME DB_UNIQUE_NAME OPEN_MODE DATABASE_ROLE FLASHBACK_ON --------- ------------------------------ -------------------- ----------...