Oracle Dataguard Parameters for Physical Standby Creation in 12c and 11g

Oracle Dataguard we can configure different methods, but in this post we are posting only parameters list we are using in the real time to sync standby.

ORACLE DATAGUARD PARAMETERS


ORACLE SID in Primary - ORCLPR
ORACLE SID in Standby - ORCLDR

Set These Parameters for Primary:

log_archive_dest_1="LOCATION=USE_DB_RECOVERY_FILE_DEST VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=ORCLPR"
log_archive_dest_2="service=ORCLDR LGWR ASYNC NOAFFIRM valid_for=(online_logfiles,primary_role) db_unique_name=ORCLDR"
log_archive_config='DG_CONFIG=(ORCLPR,ORCLDR)'
db_unique_name='ORCLPR'  (this parameter is static db bounce required to reflect this parameter)
log_archive_dest_state_1=ENABLE
log_archive_dest_state_2=ENABLE
standby_file_management=auto
fal_server=ORCLDR

Use these Parameters for Standby:

log_archive_dest_1="LOCATION=USE_DB_RECOVERY_FILE_DEST VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=ORCLDR"
log_archive_dest_2="service=ORCLPR LGWR ASYNC NOAFFIRM valid_for=(online_logfiles,primary_role) db_unique_name=ORCLPR"
log_archive_config='DG_CONFIG=(ORCLPR,ORCLDR)'
db_unique_name='ORCLDR'  (this parameter is static db bounce required to reflect this parameter)
log_archive_dest_state_1=ENABLE
log_archive_dest_state_2=DEFER
standby_file_management=auto
fal_server=ORCLPR (this parameter is useful whenever gap is there fal server automatically send request to primary
oracle dataguard parameters for standby in 12c 11g


You can use " alter system set " command to set all these parameters, for static parameter db_unique_name use scope=spfile 

Popular posts from this blog

How to Move OCR and Voting files to Another ASM Diskgroup 11g 12c

What is Compartment in Oracle Cloud Infrastructure (OCI)