Data Guard Physical Standby Setup in Oracle Database 11g Release 2
System Configuration: Two VMS 1. Primary Server OS - Redhat Linux 5.11 Oracle - 11.2 IP - 192.168.1.100 Hostname - sourcenode01 2. Standby Server OS - Redhat Linux 5.11 Oracle - 11.2 (Only software has installed) IP - 192.168.1.101 Hostname - targetnode01 Primary Server Setup Logging Check that the primary database is in archivelog mode. SQL> select name from v$database; NAME --------- SRC01 SQL> select log_mode from v$database; LOG_MODE ------------ ARCHIVELOG SQL> If it is noarchivelog mode, switch is to archivelog mode. SHUTDOWN IMMEDIATE; STARTUP MOUNT; ALTER DATABASE...