You created a physical standby database PRODSBY1 from the primary database PROD using SQL and RMAN. Which two are prerequisites for creating a Data Guard Broker configuration to manage these databases?
A.
The standby database must have supplemental logging enabled.
B.
The primary database must have FORCE LOGGING enabled.
C.
The DG_BROKER_START parameter must be set to TRUE for both database instances.
D.
The primary database must have supplemental logging enabled.
E.
A local net service name to enable connectivity to the PRODSBY1 database instance must be defined on the primary database host.
Suggested Answer:BC🗳️
B: Enabled forced logging on the primary database by issuing the following command. ALTER DATABASE FORCE LOGGING; -- Make sure at leat one logfile is present. ALTER SYSTEM SWITCH LOGFILE;
C: Enable Broker - When we have a primary database and a standby database, we need to start using the Data Guard Broker to manage them. Connect to both databases (primary and standby) and issue the following command. ALTER SYSTEM SET dg_broker_start=true; References: https://oracle-base.com/articles/12c/data-guard-setup-using-broker-12cr1
CE
https://docs.oracle.com/en/database/oracle/oracle-database/12.2/dgbkr/oracle-data-guard-broker-installation-requirements.html. 2.2 Prerequisites
The value of the DG_BROKER_START initialization parameter must be set to TRUE (C True)
Network configuration files must be set up on the primary database and on the standby database if you configure an existing standby database into the broker configuration (E True)
The primary database must be opened in ARCHIVELOG mode, But it doesn't say anything about FORCE LOGING (B False)
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
ScottL
1 year, 3 months agoJESUSBB
2 years, 5 months agoRogazan
3 years, 6 months agoSugar
3 years, 3 months ago