To start a physical standby database, follow these steps using SQL*Plus with administrator privileges: Start the database in NOMOUNT mode:...
DataGuard
Primary --Check DB role (PRIMARY/STANDBY) SELECT DATABASE_ROLE, DB_UNIQUE_NAME AS INSTANCE, OPEN_MODE, PROTECTION_MODE, PROTECTION_LEVEL, SWITCHOVER_STATUS FROM V$DATABASE; DATABASE_ROLE INSTANCE OPEN_MODE PROTECTION_MODE...
Oracle databases maintain a detailed history of all changes made to the database through archived redo logs, commonly known as...
The ORA-16698 error in Oracle indicates that a Data Guard member has a LOG_ARCHIVE_DEST_n parameter with the SERVICE attribute set,...
This content is password protected. To view it please enter your password below: Password:
In Oracle Data Guard, changing the protection mode involves adjusting the configuration to one of the three protection modes: Maximum...
The ORA-16855 error indicates that the transport lag (the delay in sending redo data from the primary to the standby...
Dataguard-Configuration-using-active-duplicate-1Download Hope it helped !! :)
Once the standby database is configured and verified to be working properly, we can switch over to the standby database...
Maximum Protection Mode 1. No data loss 2. Redo has to be written to both Primary redo logs and standby...
It has been seen in cases where ORA-16401 and ORA-16055 reported in primary alert log when redo log switch is...
DISABLE_ARCHIVE_LOGGING From 12c, during Import operations we can disable archive logging, hence no redo will be generated for the whole...
Once an Archive Log is received or archived from a Standby Redo Log on the Standby Database, it is registered...
IN PRIMARY DATABASE :- 1) Check Instance details :- select status,instance_name,database_role from v$database,v$instance; ------------------------------------------------------------------------------------------------------------------------------------ 2) Check redo log and standby...
Cause: Looks like ADR is having the issue. Solution: Added the below parameter in the both the nodes and restarted...
$ ps -ef|grep pmon oracle 2113 1 0 Sep20 ? 00:54:32 ora_pmon_prod1 oracle 30032 29996 0 08:50 pts/0 00:00:00 grep...
Issue : ORA-16047: DGID mismatch between destination setting and target database alert.log alter database register logfile '/opt/data/oracle3/prod101/FRA/prod101/archivelog/2019_12_01/o1_mf_1_190698_gy5z61jw_.arc' There are 1...
A) Recovery Point Objective(RPO) A recovery point objective (RPO) is the maximum length of time permitted that data can be...
1) PREREQUISITES: Requirements before starting the DATA GUARD CONFIGURATION. NOTE: 1) In PRIMARY SERVER DG11 we need to install the...
This content is password protected. To view it please enter your password below: Password:
vi /home/oracle/scripts/lag_time_report_and_diskgroup_space.ksh #!/bin/ksh export ORACLE_SID=<Target_ORACLE_SID> export ORACLE_HOME=/u01/oracle/product/11.2.0.4/db /u01/oracle/product/11.2.0.4/db/bin/sqlplus -s / as sysdba << NACHO > /tmp/standbylag.log set feedback off select...
Add the Target Database TNS entry to the Source's tnsnames.ora file(s) (all of them if it's a clustered Source) Set...
On Source, as Oracle user: export ORACLE_SID=<source_sid> sqlplus '/as sysdba' alter system set log_archive_dest_state_<whatever_#_used>='DEFER' scope=both sid='*'; alter system set log_archive_dest_<whatever_#_used>=''...
Overview:As we are already aware that the rolling forward an physical standby database via an incremental SCN based backup method is one of the easiest way of getting your standby database with lag into sync with the primary database.The lag...
Normally in DR setup, the archives from primary shipped to standby and applied there. Suppose some of the archives hasn’t...