SlideShare a Scribd company logo
1 of 13
Download to read offline
ORACLE 11g Data Guard on the Command Line 
Uwe Hesse 
Oracle Certified Master 
Senior Principal Instructor (ORACLE University) 
______________________________________________________________ 
The following guide is intended as a supplement to the Oracle University course 
Oracle Database 11g: Data Guard Administration. It deals with the 
creation and management of physical and logical standby databases without using 
Oracle Grid Control. 
The guide has been developed on 
ORACLE Enterprise Linux release 5 
Kernel 2.6.18-8.el5 on an i686,but should work almost identical on all 
platforms certified. 
The ORACLE version used is 
Oracle Database 11g Enterprise Edition Release 11.1.0.6 
There is only one server used for the Primary database, a physical and a logical 
standby database. For test and demonstration purposes this is well suited; a realistic 
implementation would require 3 computers of course. 
The guide is easily adaptable for this approach, in fact, it is even a little harder to 
implement it all on one computer only. 
This handout as PDF: 
http://uhesse.wordpress.com/downloads/ 
Page 1 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
Creation of the Primary Database .......................................................................................... 3 
Creation of the Physical Standby Database ......................................................................... 3 
Create Standby Logs on Primary: ........................................................................................................3 
Create Standby Database with RMAN without previous backup: .......................................................3 
Creation of the Data Guard Broker Configuration................................................................ 4 
Start DMON background process on Primary and Standby:................................................................4 
Call Data Guard Manager Linemode and create configuration:..........................................................4 
Creation of the Logical Standby Database............................................................................ 5 
Check beforehand whether Logical Standby makes sense at all ..........................................................5 
What tables have no Primary/Unique Constraints?..............................................................................5 
Create directories and passwordfile for the Logical Standby...............................................................5 
Create a Physical Standby first and then transform it into Logical Standby. .......................................5 
Customize Parameter on Primary for new Standby Database ..............................................................5 
Create Standby Dictionary ...................................................................................................................5 
Now we transform the Physical Standby Database into a Logical Standby Database. ........................5 
Add theLogical Standby to the Broker Configuration ......................................................... 6 
Maximum Protection with Logical Standby Database .........................................................................6 
Change of Protection Level and Transport Method............................................................. 7 
Maximum Protection; here 2 Standby Databases are recommended. ..................................................7 
Maximum Availability.........................................................................................................................7 
Maximum Performance with LGWR-Transport ..................................................................................7 
Maximum Performance with ARCH-Transport ...................................................................................7 
Switchover and Failover.......................................................................................................... 7 
Switchover: Primary and Standby exchange their roles.......................................................................7 
Failover: Emergency, the Primary is destroyed ...................................................................................7 
Flashback Database ................................................................................................................ 8 
Turn on Flashback for all Databases ....................................................................................................8 
Example of a Flashback of the Physical Standby.................................................................................8 
Open Physical Standby Read Only ......................................................................................................8 
After a Failover turn old Primary into a Standby Database .................................................................8 
Fast-Start-Failover ................................................................................................................... 8 
Modify Broker-Configuration..............................................................................................................8 
Start the Observer on another computer...............................................................................................8 
Snapshot Standby ................................................................................................................... 9 
Use DGMGRL to convert your Standby DB into a Test System : .......................................................9 
Reconvert the Test System into Standby DB: ......................................................................................9 
Active Data Guard.................................................................................................................... 9 
Interrupt Redo Apply on the Physical Standby: ...................................................................................9 
Open Physical Standby Read-Only: .....................................................................................................9 
Turn on Redo Apply again: ..................................................................................................................9 
Backup & Recovery ................................................................................................................. 9 
Restore a datafile to the Primary from Physical Standby:....................................................................9 
Recover the datafile on the Primary: ....................................................................................................9 
Appendix................................................................................................................................. 10 
VALID_FOR – Configurations ..........................................................................................................10 
Primary and Physical Standby..............................................................................10 
Primary and Logical Standby...............................................................................10 
Primary, Physical Standby and Logical Standby .................................................10 
#initprima.ora.....................................................................................................................................11 
#initphyst.ora......................................................................................................................................11 
#initlogst.ora ......................................................................................................................................12 
#physt.sh ............................................................................................................................................12 
#logst.sh .............................................................................................................................................12 
--flashbackon.sql ................................................................................................................................12 
#listener.ora........................................................................................................................................13 
Page 2 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
Creation of the Primary Database 
Customize listener.ora and tnsnames.ora (with netmgr or editor) 
Important entry in listener.ora for later use of Data Guard Broker: 
GLOBAL_DBNAME = prima_DGMGRL 
GLOBAL_DBNAME = physt_DGMGRL 
cd skripte 
./prima.sh 
Creation of the Physical Standby Database 
Prepare Primary DB: 
connect sys/oracle@prima as sysdba 
alter database force logging; 
shutdown immediate; 
startup mount 
alter database archivelog; 
alter database open; 
Create directories and password file: 
exit; 
cd $HOME/skripte 
./physt.sh 
Create spfile for Standby Database & startup NOMOUNT: 
connect sys/oracle@physt as sysdba 
create spfile from pfile='/home/oracle/skripte/initphyst.ora'; 
startup nomount; 
Create Standby Logs on Primary: 
connect sys/oracle@prima as sysdba 
alter database add standby logfile 
'/home/oracle/prima/sblog_g3m1.rdo' size 100m; 
alter database add standby logfile 
'/home/oracle/prima/sblog_g4m1.rdo' size 100m; 
alter database add standby logfile 
'/home/oracle/prima/sblog_g5m1.rdo' size 100m; 
Create Standby Database with RMAN without previous backup: 
RMAN> connect target sys/oracle@prima 
RMAN> connect auxiliary sys/oracle@physt 
RMAN> duplicate target database for standby from active database; 
Page 3 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
Creation of the Data Guard Broker Configuration 
Start DMON background process on Primary and Standby: 
connect sys/oracle@prima as sysdba 
alter system set dg_broker_start=true; 
connect sys/oracle@physt as sysdba 
alter system set dg_broker_start=true; 
exit 
Call Data Guard Manager Linemode and create configuration: 
dgmgrl 
help 
connect sys/oracle@prima 
create configuration myconfig as 
primary database is prima 
connect identifier is prima; 
add database physt as 
connect identifier is physt 
maintained as physical; 
enable configuration; 
show configuration; 
Page 4 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
Creation of the Logical Standby Database 
Check beforehand whether Logical Standby makes sense at all 
select distinct owner,table_name from dba_logstdby_unsupported 
order by owner,table_name; 
What tables have no Primary/Unique Constraints? 
select owner, table_name from dba_logstdby_not_unique 
where table_name not in (select table_name from 
dba_logstdby_unsupported); 
Create directories and passwordfile for the Logical Standby 
exit 
./logst.sh 
Create spfile for the Logical Standby & startup NOMOUNT: 
connect sys/oracle@logst as sysdba 
create spfile from pfile='/home/oracle/skripte/initlogst.ora'; 
startup nomount 
Create a Physical Standby first and then transform it into Logical Standby. 
RMAN> connect target sys/oracle@prima 
RMAN> connect auxiliary sys/oracle@logst 
RMAN> duplicate target database for standby from active database; 
Customize Parameter on Primary for new Standby Database 
connect sys/oracle@prima as sysdba 
alter system set log_archive_dest_3='service=logst db_unique_name=logst'; 
Create Standby Dictionary 
execute dbms_logstdby.build 
Now we transform the Physical Standby Database into a Logical Standby Database. 
connect sys/oracle@logst as sysdba 
alter database recover to logical standby logst; 
shutdown immediate 
startup mount 
alter database open resetlogs; 
alter database start logical standby apply; 
Page 5 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
Add theLogical Standby to the Broker Configuration 
connect sys/oracle@logst as sysdba 
alter system set dg_broker_start=true; 
dgmgrl>connect sys/oracle@prima 
show configuration; 
add database logst as 
connect identifier is logst 
maintained as logical; 
enable database logst; 
show configuration; 
Maximum Protection with Logical Standby Database 
edit database prima set property LogXptMode=SYNC; 
edit database physt set property LogXptMode=SYNC; 
edit database logst set property LogXptMode=SYNC; 
edit configuration set protection mode as maxprotection; 
show configuration; 
Page 6 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
Change of Protection Level and Transport Method 
dgmgrl> connect sys/oracle@prima 
show configuration verbose; 
show database verbose physt; 
Maximum Protection; here 2 Standby Databases are recommended. 
The changes are always done on Primary and Standby in case of a later 
SWITCHOVER. 
edit database prima set property LogXptMode=SYNC; 
edit database physt set property LogXptMode=SYNC; 
edit configuration set protection mode as maxprotection; 
show configuration; 
Maximum Availability 
edit database prima set property LogXptMode=SYNC; 
edit database physt set property LogXptMode=SYNC; 
edit configuration set protection mode as maxavailability; 
show configuration; 
Maximum Performance with LGWR-Transport 
If there was a higher Protection Level beforehand, it must be lowered to Maximum 
Performance now 
edit configuration set protection mode as maxperformance; 
edit database prima set property LogXptMode=ASYNC; 
edit database physt set property LogXptMode=ASYNC; 
show configuration; 
Maximum Performance with ARCH-Transport 
edit configuration set protection mode as maxperformance; 
edit database prima set property LogXptMode=ARCH; 
edit database physt set property LogXptMode=ARCH; 
show configuration; 
Switchover and Failover 
Switchover: Primary and Standby exchange their roles 
dgmgrl>connect sys/oracle@prima 
switchover to physt; 
Failover: Emergency, the Primary is destroyed 
dgmgrl>connect sys/oracle@physt 
failover to physt; 
Page 7 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
Flashback Database 
Turn on Flashback for all Databases 
connect sys/oracle@prima as sysdba 
@$HOME/skripte/flashbackon; 
Example of a Flashback of the Physical Standby 
recover managed standby database cancel; 
flashback database to timestamp 
to_timestamp('2005-10-20:16:30:00','yyyy-mm-dd:hh24:mi:ss'); 
Open Physical Standby Read Only 
alter database open read only; 
select ...; 
shutdown immediate 
startup mount 
recover managed standby database [using current logfile] 
disconnect; 
After a Failover turn old Primary into a Standby Database 
NewPrimary > select standby_became_primary_scn from v$database; 
OldPrimary > flashback database to scn <s.o.>; 
OldPrimary > alter database convert to physical standby; 
OldPrimary > shutdown immediate 
OldPrimary > startup mount 
Or simply: 
DGMGRL> reinstate database OldPrimary; 
Fast-Start-Failover 
Modify Broker-Configuration 
EDIT DATABASE prima SET PROPERTY FastStartFailoverTarget = physt; 
EDIT DATABASE physt SET PROPERTY FastStartFailoverTarget = prima; 
EDIT CONFIGURATION SET PROPERTY FastStartFailoverThreshold = 20; 
ENABLE FAST_START FAILOVER; 
Start the Observer on another computer 
START OBSERVER; 
Page 8 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
Snapshot Standby 
Use DGMGRL to convert your Standby DB into a Test System : 
convert database physt to snapshot standby; 
You can do testing now as you like while Redo from the Primary is still received. 
Reconvert the Test System into Standby DB: 
convert database physt to physical standby; 
Active Data Guard 
Interrupt Redo Apply on the Physical Standby: 
DGMGRL > edit database physt set state=apply-off; 
Open Physical Standby Read-Only: 
alter database open read only; 
Turn on Redo Apply again: 
DGMGRL > edit database physt set state=apply-on; 
Backup & Recovery 
Restore a datafile to the Primary from Physical Standby: 
RMAN> connect target sys/oracle@physt 
RMAN> connect auxiliary sys/oracle@prima 
RMAN> backup as copy datafile 4 auxiliary 
format=’/home/oracle/prima/users01.dbf’; 
RMAN> exit; 
Recover the datafile on the Primary: 
RMAN> connect target sys/oracle@prima 
RMAN> recover datafile 4; 
Page 9 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
Appendix 
VALID_FOR – Configurations 
Primary and Physical Standby 
DB_UNIQUE_NAME=prima 
LOG_ARCHIVE_CONFIG= 
'DG_CONFIG=(prima,physt)' 
LOG_ARCHIVE_DEST_1= 
'LOCATION=/home/oracle/prima/archive/ 
VALID_FOR=(ALL_LOGFILES,ALL_ROLES) 
DB_UNIQUE_NAME=prima' 
LOG_ARCHIVE_DEST_2= 
'SERVICE=physt 
VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) 
DB_UNIQUE_NAME=physt' 
STANDBY_ARCHIVE_DEST=/home/oracle/prima/archive/ 
DB_UNIQUE_NAME=physt 
LOG_ARCHIVE_CONFIG= 
'DG_CONFIG=(prima,physt)' 
LOG_ARCHIVE_DEST_1= 
'LOCATION=/home/oracle/physt/archive/ 
VALID_FOR=(ALL_LOGFILES,ALL_ROLES) 
DB_UNIQUE_NAME=physt' 
LOG_ARCHIVE_DEST_2= 
'SERVICE=prima 
VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) 
DB_UNIQUE_NAME=prima' 
STANDBY_ARCHIVE_DEST=/home/oracle/physt/archive/ 
Primary and Logical Standby 
DB_UNIQUE_NAME=prima 
LOG_ARCHIVE_CONFIG= 
'DG_CONFIG=(prima,logst)' 
LOG_ARCHIVE_DEST_1= 
'LOCATION=/home/oracle/prima/archive1/ 
VALID_FOR=(ONLINE_LOGFILES,ALL_ROLES) 
DB_UNIQUE_NAME=prima' 
LOG_ARCHIVE_DEST_2= 
'LOCATION=/home/oracle/prima/archive2 
VALID_FOR=(STANDBY_LOGFILES,STANDBY_ROLE) 
DB_UNIQUE_NAME=prima' 
LOG_ARCHIVE_DEST_3= 
'SERVICE=logst 
VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) 
DB_UNIQUE_NAME=logst' 
STANDBY_ARCHIVE_DEST=/home/oracle/prima/archive2 
DB_UNIQUE_NAME=logst 
LOG_ARCHIVE_CONFIG= 
'DG_CONFIG=(prima,logst)' 
LOG_ARCHIVE_DEST_1= 
'LOCATION=/home/oracle/logst/archive1/ 
VALID_FOR=(ONLINE_LOGFILES,ALL_ROLES) 
DB_UNIQUE_NAME=logst' 
LOG_ARCHIVE_DEST_2= 
'LOCATION=/home/oracle/logst/archive2/ 
VALID_FOR=(STANDBY_LOGFILES,STANDBY_ROLE) 
DB_UNIQUE_NAME=logst' 
LOG_ARCHIVE_DEST_3= 
'SERVICE=prima 
VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) 
DB_UNIQUE_NAME=prima' 
STANDBY_ARCHIVE_DEST=/home/oracle/logst/archive2 
Primary, Physical Standby and Logical Standby 
DB_UNIQUE_NAME=prima 
LOG_ARCHIVE_CONFIG= 
'DG_CONFIG=(prima,physt, logst)' 
LOG_ARCHIVE_DEST_1= 
'LOCATION=/home/oracle/prima/archive/ 
VALID_FOR= 
(ALL_LOGFILES,ALL_ROLES) 
DB_UNIQUE_NAME=prima' 
LOG_ARCHIVE_DEST_2= 
'SERVICE=physt 
VALID_FOR= 
(ONLINE_LOGFILES,PRIMARY_ROLE) 
DB_UNIQUE_NAME=physt' 
LOG_ARCHIVE_DEST_3= 
'SERVICE=logst 
VALID_FOR= 
(ONLINE_LOGFILES,PRIMARY_ROLE) 
DB_UNIQUE_NAME=logst' 
STANDBY_ARCHIVE_DEST= 
’/home/oracle/prima/archive’ 
DB_UNIQUE_NAME=physt 
LOG_ARCHIVE_CONFIG= 
'DG_CONFIG=(prima,physt, logst)' 
LOG_ARCHIVE_DEST_1= 
'LOCATION=/home/oracle/physt/archive/ 
VALID_FOR= 
(ALL_LOGFILES,ALL_ROLES) 
DB_UNIQUE_NAME=physt' 
LOG_ARCHIVE_DEST_2= 
'SERVICE=prima 
VALID_FOR= 
(ONLINE_LOGFILES,PRIMARY_ROLE) 
DB_UNIQUE_NAME=prima' 
LOG_ARCHIVE_DEST_3= 
'SERVICE=logst 
VALID_FOR= 
(ONLINE_LOGFILES,PRIMARY_ROLE) 
DB_UNIQUE_NAME=logst’ 
STANDBY_ARCHIVE_DEST= 
’/home/oracle/physt/archive’ 
DB_UNIQUE_NAME=logst 
LOG_ARCHIVE_CONFIG= 
'DG_CONFIG=(prima,physt, logst)' 
LOG_ARCHIVE_DEST_1= 
'LOCATION=/home/oracle/logst/archive1/ 
VALID_FOR= 
(ONLINE_LOGFILES,ALL_ROLES) 
DB_UNIQUE_NAME=logst' 
LOG_ARCHIVE_DEST_2= 
'LOCATION=/home/oracle/logst/archive2/ 
VALID_FOR= 
(STANDBY_LOGFILES,STANDBY_ROLE) 
DB_UNIQUE_NAME=logst' 
STANDBY_ARCHVE_DEST= 
’/home/oracle/logst/archive2’ 
Page 10 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
#initprima.ora 
compatible=11.1.0 
db_block_size=8192 
db_name='prima' 
db_unique_name='prima' 
instance_name='prima' 
control_files='/home/oracle/prima/control01.ctl' 
memory_target=300m 
undo_management=auto 
undo_tablespace=undotbs1 
log_archive_config='dg_config=(prima,physt,logst)' 
log_archive_dest_1='location=/home/oracle/prima/archive 
valid_for=(all_logfiles,all_roles) db_unique_name=prima' 
standby_file_management=auto 
processes=100 
db_recovery_file_dest='/home/oracle/flashback' 
db_recovery_file_dest_size=5g 
db_domain='' 
diagnostic_dest='/home/oracle/prima' 
remote_login_passwordfile=exclusive 
#initphyst.ora 
compatible=11.1.0 
db_block_size=8192 
db_name='prima' 
db_unique_name='physt' 
instance_name='physt' 
control_files='/home/oracle/physt/control01.ctl' 
memory_target=300m 
undo_management=auto 
undo_tablespace=undotbs1 
db_file_name_convert='/home/oracle/prima','/home/oracle/physt' 
log_file_name_convert='/home/oracle/prima','/home/oracle/physt' 
log_archive_config='dg_config=(prima,physt,logst)' 
log_archive_dest_1='location=/home/oracle/physt/archive 
valid_for=(all_logfiles,all_roles) db_unique_name=physt' 
standby_file_management=auto 
processes=100 
db_recovery_file_dest_size=5g 
db_recovery_file_dest='/home/oracle/flashback' 
db_domain='' 
diagnostic_dest='/home/oracle/physt' 
remote_login_passwordfile=exclusive 
Page 11 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
#initlogst.ora 
compatible=11.1.0 
db_block_size=8192 
db_name='prima' 
db_unique_name='logst' 
instance_name='logst' 
control_files='/home/oracle/logst/control01.ctl' 
memory_target=300m 
undo_management=auto 
undo_tablespace=undotbs1 
undo_retention=3600 
db_file_name_convert='/home/oracle/prima','/home/oracle/logst' 
log_file_name_convert='/home/oracle/prima','/home/oracle/logst' 
log_archive_config='dg_config=(prima,physt,logst)' 
log_archive_dest_1='location=/home/oracle/logst/archive1 
valid_for=(online_logfiles,all_roles) db_unique_name=logst' 
log_archive_dest_2='location=/home/oracle/logst/archive2 
valid_for=(standby_logfiles,standby_roles) db_unique_name=logst' 
standby_file_management=auto 
processes=100 
db_recovery_file_dest_size=5g 
db_recovery_file_dest='/home/oracle/flashback' 
db_domain='' 
diagnostic_dest='/home/oracle/logst' 
remote_login_passwordfile=exclusive 
#physt.sh 
mkdir /home/oracle/physt 
mkdir /home/oracle/physt/bdump 
mkdir /home/oracle/physt/cdump 
mkdir /home/oracle/physt/udump 
mkdir /home/oracle/physt/archive 
mkdir /home/oracle/physt/flashback 
export ORACLE_SID=physt 
orapwd file=/u01/app/oracle/product/11.1.0/db_1/dbs/orapwphyst 
password=oracle force=y ignorecase=y 
#logst.sh 
mkdir /home/oracle/logst 
mkdir /home/oracle/logst/bdump 
mkdir /home/oracle/logst/cdump 
mkdir /home/oracle/logst/udump 
mkdir /home/oracle/logst/archive 
export ORACLE_SID=logst 
orapwd file=/u01/app/oracle/product/10.2.0/db_1/dbs/orapwlogst 
password=oracle force=y ignorecase=y 
--flashbackon.sql 
connect sys/oracle@prima as sysdba 
alter system set db_recovery_file_dest_size=5g; 
alter system set db_recovery_file_dest='/home/oracle/prima/flashback'; 
shutdown immediate 
startup mount 
alter database flashback on; 
alter database open; 
connect sys/oracle@logst as sysdba 
Page 12 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
alter system set db_recovery_file_dest_size=5g; 
alter system set db_recovery_file_dest='/home/oracle/logst/flashback'; 
alter database stop logical standby apply; 
shutdown immediate 
startup mount 
alter database flashback on; 
alter database open; 
alter database start logical standby apply immediate; 
connect sys/oracle@physt as sysdba 
alter system set db_recovery_file_dest_size=5g; 
alter system set db_recovery_file_dest='/home/oracle/physt/flashback'; 
recover managed standby database cancel; 
alter database flashback on; 
recover managed standby database using current logfile disconnect; 
#listener.ora 
LISTENER = 
(DESCRIPTION_LIST = 
(DESCRIPTION = 
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC)) 
) 
(DESCRIPTION = 
(ADDRESS = (PROTOCOL = TCP)(HOST = yourhostname)(PORT = 1521)) 
) 
) 
SID_LIST_LISTENER = 
(SID_LIST = 
(SID_DESC = 
(SID_NAME = PLSExtProc) 
(ORACLE_HOME = /u01/app/oracle/product/11.1.0/db_1) 
(PROGRAM = extproc) 
) 
(SID_DESC = 
(GLOBAL_DBNAME = prima_DGMGRL) 
(ORACLE_HOME = /u01/app/oracle/product/11.1.0/db_1) 
(SID_NAME = prima) 
) 
(SID_DESC = 
(GLOBAL_DBNAME = physt_DGMGRL) 
(ORACLE_HOME = /u01/app/oracle/product/11.1.0/db_1) 
(SID_NAME = physt) 
) 
(SID_DESC = 
(GLOBAL_DBNAME = logst_DGMGRL) 
(ORACLE_HOME = /u01/app/oracle/product/11.1.0/db_1) 
(SID_NAME = logst) 
) 
) 
Page 13 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)

More Related Content

What's hot

Oracle apps integration_cookbook
Oracle apps integration_cookbookOracle apps integration_cookbook
Oracle apps integration_cookbookchaitanyanaredla
 
NetApp system installation workbook Spokane
NetApp system installation workbook SpokaneNetApp system installation workbook Spokane
NetApp system installation workbook SpokaneAccenture
 
B28654oas10g best pracitice
B28654oas10g best praciticeB28654oas10g best pracitice
B28654oas10g best praciticeCaipei Chen
 
Onefs 8.2.1-backup-and-recovery-guide
Onefs 8.2.1-backup-and-recovery-guideOnefs 8.2.1-backup-and-recovery-guide
Onefs 8.2.1-backup-and-recovery-guideluisa torres
 
Whats new in Jedox Palo
Whats new in Jedox PaloWhats new in Jedox Palo
Whats new in Jedox PaloUtsav Mone
 
Coherence developer's guide
Coherence developer's guideCoherence developer's guide
Coherence developer's guidewangdun119
 
Soa best practices_1013x_drop3
Soa best practices_1013x_drop3Soa best practices_1013x_drop3
Soa best practices_1013x_drop3Meng He
 
Oracle11g arch
Oracle11g archOracle11g arch
Oracle11g archSal Marcus
 
Pdrmsqlsr services share_point_integrated_mode
Pdrmsqlsr services share_point_integrated_modePdrmsqlsr services share_point_integrated_mode
Pdrmsqlsr services share_point_integrated_modeSteve Xu
 
High availability solutions
High availability solutionsHigh availability solutions
High availability solutionsSteve Xu
 
Esm install guide_5.2
Esm install guide_5.2Esm install guide_5.2
Esm install guide_5.2Protect724v3
 
APM81SP1_RevA_Installation_Book
APM81SP1_RevA_Installation_BookAPM81SP1_RevA_Installation_Book
APM81SP1_RevA_Installation_BookDavid_Tickner
 
Essbase database administrator's guide
Essbase database administrator's guideEssbase database administrator's guide
Essbase database administrator's guideChanukya Mekala
 
D64974 gc10 odi-11g-integration-and-administration-ag
D64974 gc10 odi-11g-integration-and-administration-agD64974 gc10 odi-11g-integration-and-administration-ag
D64974 gc10 odi-11g-integration-and-administration-agChanukya Mekala
 
Plesk 8.1 for Windows
Plesk 8.1 for WindowsPlesk 8.1 for Windows
Plesk 8.1 for Windowswebhostingguy
 
Tcpip fund
Tcpip fundTcpip fund
Tcpip fundSteve Xu
 

What's hot (19)

Oracle apps integration_cookbook
Oracle apps integration_cookbookOracle apps integration_cookbook
Oracle apps integration_cookbook
 
NetApp system installation workbook Spokane
NetApp system installation workbook SpokaneNetApp system installation workbook Spokane
NetApp system installation workbook Spokane
 
B28654oas10g best pracitice
B28654oas10g best praciticeB28654oas10g best pracitice
B28654oas10g best pracitice
 
Onefs 8.2.1-backup-and-recovery-guide
Onefs 8.2.1-backup-and-recovery-guideOnefs 8.2.1-backup-and-recovery-guide
Onefs 8.2.1-backup-and-recovery-guide
 
Whats new in Jedox Palo
Whats new in Jedox PaloWhats new in Jedox Palo
Whats new in Jedox Palo
 
Install
InstallInstall
Install
 
Plsql
PlsqlPlsql
Plsql
 
Coherence developer's guide
Coherence developer's guideCoherence developer's guide
Coherence developer's guide
 
Soa best practices_1013x_drop3
Soa best practices_1013x_drop3Soa best practices_1013x_drop3
Soa best practices_1013x_drop3
 
Oracle11g arch
Oracle11g archOracle11g arch
Oracle11g arch
 
Pdrmsqlsr services share_point_integrated_mode
Pdrmsqlsr services share_point_integrated_modePdrmsqlsr services share_point_integrated_mode
Pdrmsqlsr services share_point_integrated_mode
 
High availability solutions
High availability solutionsHigh availability solutions
High availability solutions
 
Esm install guide_5.2
Esm install guide_5.2Esm install guide_5.2
Esm install guide_5.2
 
Oracle sap
Oracle sapOracle sap
Oracle sap
 
APM81SP1_RevA_Installation_Book
APM81SP1_RevA_Installation_BookAPM81SP1_RevA_Installation_Book
APM81SP1_RevA_Installation_Book
 
Essbase database administrator's guide
Essbase database administrator's guideEssbase database administrator's guide
Essbase database administrator's guide
 
D64974 gc10 odi-11g-integration-and-administration-ag
D64974 gc10 odi-11g-integration-and-administration-agD64974 gc10 odi-11g-integration-and-administration-ag
D64974 gc10 odi-11g-integration-and-administration-ag
 
Plesk 8.1 for Windows
Plesk 8.1 for WindowsPlesk 8.1 for Windows
Plesk 8.1 for Windows
 
Tcpip fund
Tcpip fundTcpip fund
Tcpip fund
 

Viewers also liked

Σχολικός εκφοβισμός
Σχολικός εκφοβισμόςΣχολικός εκφοβισμός
Σχολικός εκφοβισμός14o dimotiko Chanion
 
Bangladesh national guidelines and operational manual for tuberculosis dr sha...
Bangladesh national guidelines and operational manual for tuberculosis dr sha...Bangladesh national guidelines and operational manual for tuberculosis dr sha...
Bangladesh national guidelines and operational manual for tuberculosis dr sha...Bangabandhu Sheikh Mujib Medical University
 
Early Initiation of Insulin:Basal bolus versus premixed insulin-Dr Shahjada S...
Early Initiation of Insulin:Basal bolus versus premixed insulin-Dr Shahjada S...Early Initiation of Insulin:Basal bolus versus premixed insulin-Dr Shahjada S...
Early Initiation of Insulin:Basal bolus versus premixed insulin-Dr Shahjada S...Bangabandhu Sheikh Mujib Medical University
 

Viewers also liked (18)

παρουσίαση χανιά
παρουσίαση χανιάπαρουσίαση χανιά
παρουσίαση χανιά
 
Caves
CavesCaves
Caves
 
Risk factors of acs in bangladesh mmj
Risk factors of acs in bangladesh mmjRisk factors of acs in bangladesh mmj
Risk factors of acs in bangladesh mmj
 
Σχολικός εκφοβισμός
Σχολικός εκφοβισμόςΣχολικός εκφοβισμός
Σχολικός εκφοβισμός
 
Bangladesh national guidelines and operational manual for tuberculosis dr sha...
Bangladesh national guidelines and operational manual for tuberculosis dr sha...Bangladesh national guidelines and operational manual for tuberculosis dr sha...
Bangladesh national guidelines and operational manual for tuberculosis dr sha...
 
Prosklisi
ProsklisiProsklisi
Prosklisi
 
Hypothyroidism dr shahjada selim
Hypothyroidism dr shahjada selimHypothyroidism dr shahjada selim
Hypothyroidism dr shahjada selim
 
Resume (1)
Resume (1)Resume (1)
Resume (1)
 
Ata aace guideline on hypothyroidism dr shahjada selim
Ata aace guideline on hypothyroidism dr shahjada selimAta aace guideline on hypothyroidism dr shahjada selim
Ata aace guideline on hypothyroidism dr shahjada selim
 
InsulinAspart by Dr Shahjada Selim
InsulinAspart by Dr Shahjada SelimInsulinAspart by Dr Shahjada Selim
InsulinAspart by Dr Shahjada Selim
 
Diagnosis ka pkdl by dr shahjada_selim
Diagnosis ka pkdl by dr shahjada_selimDiagnosis ka pkdl by dr shahjada_selim
Diagnosis ka pkdl by dr shahjada_selim
 
Early Initiation of Insulin:Basal bolus versus premixed insulin-Dr Shahjada S...
Early Initiation of Insulin:Basal bolus versus premixed insulin-Dr Shahjada S...Early Initiation of Insulin:Basal bolus versus premixed insulin-Dr Shahjada S...
Early Initiation of Insulin:Basal bolus versus premixed insulin-Dr Shahjada S...
 
Dr selim updates on osteoporosis
Dr selim updates on osteoporosisDr selim updates on osteoporosis
Dr selim updates on osteoporosis
 
MNT for DM by DrSelim
MNT for DM by DrSelimMNT for DM by DrSelim
MNT for DM by DrSelim
 
Thyroiditis by Dr Selim
Thyroiditis by Dr SelimThyroiditis by Dr Selim
Thyroiditis by Dr Selim
 
S us mr60 dr_selim
S us mr60 dr_selimS us mr60 dr_selim
S us mr60 dr_selim
 
Addison disease by dr shahjada selim
Addison disease by dr shahjada selimAddison disease by dr shahjada selim
Addison disease by dr shahjada selim
 
Diabetes:past-present-future by Dr Shahjada Selim
Diabetes:past-present-future by Dr Shahjada SelimDiabetes:past-present-future by Dr Shahjada Selim
Diabetes:past-present-future by Dr Shahjada Selim
 

Similar to Dg cmd

Dell 3-2-1 Reference Configurations: Configuration, management, and upgrade g...
Dell 3-2-1 Reference Configurations: Configuration, management, and upgrade g...Dell 3-2-1 Reference Configurations: Configuration, management, and upgrade g...
Dell 3-2-1 Reference Configurations: Configuration, management, and upgrade g...Principled Technologies
 
HOL-0419-01-PowerProtect_Data_Manager_-19.11.pdf
HOL-0419-01-PowerProtect_Data_Manager_-19.11.pdfHOL-0419-01-PowerProtect_Data_Manager_-19.11.pdf
HOL-0419-01-PowerProtect_Data_Manager_-19.11.pdfHua Chiang
 
Maa wp sun_apps11i_db10g_r2-2
Maa wp sun_apps11i_db10g_r2-2Maa wp sun_apps11i_db10g_r2-2
Maa wp sun_apps11i_db10g_r2-2Sal Marcus
 
Ovm3 backup-recovery-1997244
Ovm3 backup-recovery-1997244Ovm3 backup-recovery-1997244
Ovm3 backup-recovery-1997244LAURA ARZATE
 
Configuring a highly available Microsoft Lync Server 2013 environment on Dell...
Configuring a highly available Microsoft Lync Server 2013 environment on Dell...Configuring a highly available Microsoft Lync Server 2013 environment on Dell...
Configuring a highly available Microsoft Lync Server 2013 environment on Dell...Principled Technologies
 
Ansible Study Guide ToC
Ansible Study Guide ToCAnsible Study Guide ToC
Ansible Study Guide ToCManish Chopra
 
Suse linux enterprise_server_15_x_for_sap_applications_configuration_guide_fo...
Suse linux enterprise_server_15_x_for_sap_applications_configuration_guide_fo...Suse linux enterprise_server_15_x_for_sap_applications_configuration_guide_fo...
Suse linux enterprise_server_15_x_for_sap_applications_configuration_guide_fo...Jaleel Ahmed Gulammohiddin
 
EMC NetWorker Module for Microsoft SQL Server Administrators ...
EMC NetWorker Module for Microsoft SQL Server Administrators ...EMC NetWorker Module for Microsoft SQL Server Administrators ...
EMC NetWorker Module for Microsoft SQL Server Administrators ...webhostingguy
 
pdfcoffee.com_i-openwells-basics-training-3-pdf-free.pdf
pdfcoffee.com_i-openwells-basics-training-3-pdf-free.pdfpdfcoffee.com_i-openwells-basics-training-3-pdf-free.pdf
pdfcoffee.com_i-openwells-basics-training-3-pdf-free.pdfJalal Neshat
 
Presentation data center deployment guide
Presentation   data center deployment guidePresentation   data center deployment guide
Presentation data center deployment guidexKinAnx
 
virtualizing_SAP_HANA_on_vSphere_leveraging_pure_all_flash_storage
virtualizing_SAP_HANA_on_vSphere_leveraging_pure_all_flash_storagevirtualizing_SAP_HANA_on_vSphere_leveraging_pure_all_flash_storage
virtualizing_SAP_HANA_on_vSphere_leveraging_pure_all_flash_storageAvinash Nayak
 
Oracle applications developer’s guide
Oracle applications developer’s guideOracle applications developer’s guide
Oracle applications developer’s guideSing Light
 
Securing optimizing linux red hat edition
Securing optimizing linux red hat editionSecuring optimizing linux red hat edition
Securing optimizing linux red hat editionHoang Duc Cuong
 
IBM PowerLinux Open Source Infrastructure Services Implementation and T…
IBM PowerLinux Open Source Infrastructure Services Implementation and T…IBM PowerLinux Open Source Infrastructure Services Implementation and T…
IBM PowerLinux Open Source Infrastructure Services Implementation and T…IBM India Smarter Computing
 
Plesk 8.1 for Windows
Plesk 8.1 for WindowsPlesk 8.1 for Windows
Plesk 8.1 for Windowswebhostingguy
 

Similar to Dg cmd (20)

Dell 3-2-1 Reference Configurations: Configuration, management, and upgrade g...
Dell 3-2-1 Reference Configurations: Configuration, management, and upgrade g...Dell 3-2-1 Reference Configurations: Configuration, management, and upgrade g...
Dell 3-2-1 Reference Configurations: Configuration, management, and upgrade g...
 
HOL-0419-01-PowerProtect_Data_Manager_-19.11.pdf
HOL-0419-01-PowerProtect_Data_Manager_-19.11.pdfHOL-0419-01-PowerProtect_Data_Manager_-19.11.pdf
HOL-0419-01-PowerProtect_Data_Manager_-19.11.pdf
 
Maa wp sun_apps11i_db10g_r2-2
Maa wp sun_apps11i_db10g_r2-2Maa wp sun_apps11i_db10g_r2-2
Maa wp sun_apps11i_db10g_r2-2
 
Bb sql serverdell
Bb sql serverdellBb sql serverdell
Bb sql serverdell
 
Ovm3 backup-recovery-1997244
Ovm3 backup-recovery-1997244Ovm3 backup-recovery-1997244
Ovm3 backup-recovery-1997244
 
Configuring a highly available Microsoft Lync Server 2013 environment on Dell...
Configuring a highly available Microsoft Lync Server 2013 environment on Dell...Configuring a highly available Microsoft Lync Server 2013 environment on Dell...
Configuring a highly available Microsoft Lync Server 2013 environment on Dell...
 
Ansible Study Guide ToC
Ansible Study Guide ToCAnsible Study Guide ToC
Ansible Study Guide ToC
 
Oracle 10g Form
Oracle 10g Form Oracle 10g Form
Oracle 10g Form
 
Suse linux enterprise_server_15_x_for_sap_applications_configuration_guide_fo...
Suse linux enterprise_server_15_x_for_sap_applications_configuration_guide_fo...Suse linux enterprise_server_15_x_for_sap_applications_configuration_guide_fo...
Suse linux enterprise_server_15_x_for_sap_applications_configuration_guide_fo...
 
EMC NetWorker Module for Microsoft SQL Server Administrators ...
EMC NetWorker Module for Microsoft SQL Server Administrators ...EMC NetWorker Module for Microsoft SQL Server Administrators ...
EMC NetWorker Module for Microsoft SQL Server Administrators ...
 
Sap setup guide
Sap setup guideSap setup guide
Sap setup guide
 
pdfcoffee.com_i-openwells-basics-training-3-pdf-free.pdf
pdfcoffee.com_i-openwells-basics-training-3-pdf-free.pdfpdfcoffee.com_i-openwells-basics-training-3-pdf-free.pdf
pdfcoffee.com_i-openwells-basics-training-3-pdf-free.pdf
 
SAP CPI-DS.pdf
SAP CPI-DS.pdfSAP CPI-DS.pdf
SAP CPI-DS.pdf
 
Presentation data center deployment guide
Presentation   data center deployment guidePresentation   data center deployment guide
Presentation data center deployment guide
 
virtualizing_SAP_HANA_on_vSphere_leveraging_pure_all_flash_storage
virtualizing_SAP_HANA_on_vSphere_leveraging_pure_all_flash_storagevirtualizing_SAP_HANA_on_vSphere_leveraging_pure_all_flash_storage
virtualizing_SAP_HANA_on_vSphere_leveraging_pure_all_flash_storage
 
Oracle applications developer’s guide
Oracle applications developer’s guideOracle applications developer’s guide
Oracle applications developer’s guide
 
Securing optimizing linux red hat edition
Securing optimizing linux red hat editionSecuring optimizing linux red hat edition
Securing optimizing linux red hat edition
 
IBM PowerLinux Open Source Infrastructure Services Implementation and T…
IBM PowerLinux Open Source Infrastructure Services Implementation and T…IBM PowerLinux Open Source Infrastructure Services Implementation and T…
IBM PowerLinux Open Source Infrastructure Services Implementation and T…
 
Plesk 8.1 for Windows
Plesk 8.1 for WindowsPlesk 8.1 for Windows
Plesk 8.1 for Windows
 
hci10_help_sap_en.pdf
hci10_help_sap_en.pdfhci10_help_sap_en.pdf
hci10_help_sap_en.pdf
 

Recently uploaded

Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 

Recently uploaded (20)

Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 

Dg cmd

  • 1. ORACLE 11g Data Guard on the Command Line Uwe Hesse Oracle Certified Master Senior Principal Instructor (ORACLE University) ______________________________________________________________ The following guide is intended as a supplement to the Oracle University course Oracle Database 11g: Data Guard Administration. It deals with the creation and management of physical and logical standby databases without using Oracle Grid Control. The guide has been developed on ORACLE Enterprise Linux release 5 Kernel 2.6.18-8.el5 on an i686,but should work almost identical on all platforms certified. The ORACLE version used is Oracle Database 11g Enterprise Edition Release 11.1.0.6 There is only one server used for the Primary database, a physical and a logical standby database. For test and demonstration purposes this is well suited; a realistic implementation would require 3 computers of course. The guide is easily adaptable for this approach, in fact, it is even a little harder to implement it all on one computer only. This handout as PDF: http://uhesse.wordpress.com/downloads/ Page 1 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
  • 2. Creation of the Primary Database .......................................................................................... 3 Creation of the Physical Standby Database ......................................................................... 3 Create Standby Logs on Primary: ........................................................................................................3 Create Standby Database with RMAN without previous backup: .......................................................3 Creation of the Data Guard Broker Configuration................................................................ 4 Start DMON background process on Primary and Standby:................................................................4 Call Data Guard Manager Linemode and create configuration:..........................................................4 Creation of the Logical Standby Database............................................................................ 5 Check beforehand whether Logical Standby makes sense at all ..........................................................5 What tables have no Primary/Unique Constraints?..............................................................................5 Create directories and passwordfile for the Logical Standby...............................................................5 Create a Physical Standby first and then transform it into Logical Standby. .......................................5 Customize Parameter on Primary for new Standby Database ..............................................................5 Create Standby Dictionary ...................................................................................................................5 Now we transform the Physical Standby Database into a Logical Standby Database. ........................5 Add theLogical Standby to the Broker Configuration ......................................................... 6 Maximum Protection with Logical Standby Database .........................................................................6 Change of Protection Level and Transport Method............................................................. 7 Maximum Protection; here 2 Standby Databases are recommended. ..................................................7 Maximum Availability.........................................................................................................................7 Maximum Performance with LGWR-Transport ..................................................................................7 Maximum Performance with ARCH-Transport ...................................................................................7 Switchover and Failover.......................................................................................................... 7 Switchover: Primary and Standby exchange their roles.......................................................................7 Failover: Emergency, the Primary is destroyed ...................................................................................7 Flashback Database ................................................................................................................ 8 Turn on Flashback for all Databases ....................................................................................................8 Example of a Flashback of the Physical Standby.................................................................................8 Open Physical Standby Read Only ......................................................................................................8 After a Failover turn old Primary into a Standby Database .................................................................8 Fast-Start-Failover ................................................................................................................... 8 Modify Broker-Configuration..............................................................................................................8 Start the Observer on another computer...............................................................................................8 Snapshot Standby ................................................................................................................... 9 Use DGMGRL to convert your Standby DB into a Test System : .......................................................9 Reconvert the Test System into Standby DB: ......................................................................................9 Active Data Guard.................................................................................................................... 9 Interrupt Redo Apply on the Physical Standby: ...................................................................................9 Open Physical Standby Read-Only: .....................................................................................................9 Turn on Redo Apply again: ..................................................................................................................9 Backup & Recovery ................................................................................................................. 9 Restore a datafile to the Primary from Physical Standby:....................................................................9 Recover the datafile on the Primary: ....................................................................................................9 Appendix................................................................................................................................. 10 VALID_FOR – Configurations ..........................................................................................................10 Primary and Physical Standby..............................................................................10 Primary and Logical Standby...............................................................................10 Primary, Physical Standby and Logical Standby .................................................10 #initprima.ora.....................................................................................................................................11 #initphyst.ora......................................................................................................................................11 #initlogst.ora ......................................................................................................................................12 #physt.sh ............................................................................................................................................12 #logst.sh .............................................................................................................................................12 --flashbackon.sql ................................................................................................................................12 #listener.ora........................................................................................................................................13 Page 2 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
  • 3. Creation of the Primary Database Customize listener.ora and tnsnames.ora (with netmgr or editor) Important entry in listener.ora for later use of Data Guard Broker: GLOBAL_DBNAME = prima_DGMGRL GLOBAL_DBNAME = physt_DGMGRL cd skripte ./prima.sh Creation of the Physical Standby Database Prepare Primary DB: connect sys/oracle@prima as sysdba alter database force logging; shutdown immediate; startup mount alter database archivelog; alter database open; Create directories and password file: exit; cd $HOME/skripte ./physt.sh Create spfile for Standby Database & startup NOMOUNT: connect sys/oracle@physt as sysdba create spfile from pfile='/home/oracle/skripte/initphyst.ora'; startup nomount; Create Standby Logs on Primary: connect sys/oracle@prima as sysdba alter database add standby logfile '/home/oracle/prima/sblog_g3m1.rdo' size 100m; alter database add standby logfile '/home/oracle/prima/sblog_g4m1.rdo' size 100m; alter database add standby logfile '/home/oracle/prima/sblog_g5m1.rdo' size 100m; Create Standby Database with RMAN without previous backup: RMAN> connect target sys/oracle@prima RMAN> connect auxiliary sys/oracle@physt RMAN> duplicate target database for standby from active database; Page 3 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
  • 4. Creation of the Data Guard Broker Configuration Start DMON background process on Primary and Standby: connect sys/oracle@prima as sysdba alter system set dg_broker_start=true; connect sys/oracle@physt as sysdba alter system set dg_broker_start=true; exit Call Data Guard Manager Linemode and create configuration: dgmgrl help connect sys/oracle@prima create configuration myconfig as primary database is prima connect identifier is prima; add database physt as connect identifier is physt maintained as physical; enable configuration; show configuration; Page 4 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
  • 5. Creation of the Logical Standby Database Check beforehand whether Logical Standby makes sense at all select distinct owner,table_name from dba_logstdby_unsupported order by owner,table_name; What tables have no Primary/Unique Constraints? select owner, table_name from dba_logstdby_not_unique where table_name not in (select table_name from dba_logstdby_unsupported); Create directories and passwordfile for the Logical Standby exit ./logst.sh Create spfile for the Logical Standby & startup NOMOUNT: connect sys/oracle@logst as sysdba create spfile from pfile='/home/oracle/skripte/initlogst.ora'; startup nomount Create a Physical Standby first and then transform it into Logical Standby. RMAN> connect target sys/oracle@prima RMAN> connect auxiliary sys/oracle@logst RMAN> duplicate target database for standby from active database; Customize Parameter on Primary for new Standby Database connect sys/oracle@prima as sysdba alter system set log_archive_dest_3='service=logst db_unique_name=logst'; Create Standby Dictionary execute dbms_logstdby.build Now we transform the Physical Standby Database into a Logical Standby Database. connect sys/oracle@logst as sysdba alter database recover to logical standby logst; shutdown immediate startup mount alter database open resetlogs; alter database start logical standby apply; Page 5 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
  • 6. Add theLogical Standby to the Broker Configuration connect sys/oracle@logst as sysdba alter system set dg_broker_start=true; dgmgrl>connect sys/oracle@prima show configuration; add database logst as connect identifier is logst maintained as logical; enable database logst; show configuration; Maximum Protection with Logical Standby Database edit database prima set property LogXptMode=SYNC; edit database physt set property LogXptMode=SYNC; edit database logst set property LogXptMode=SYNC; edit configuration set protection mode as maxprotection; show configuration; Page 6 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
  • 7. Change of Protection Level and Transport Method dgmgrl> connect sys/oracle@prima show configuration verbose; show database verbose physt; Maximum Protection; here 2 Standby Databases are recommended. The changes are always done on Primary and Standby in case of a later SWITCHOVER. edit database prima set property LogXptMode=SYNC; edit database physt set property LogXptMode=SYNC; edit configuration set protection mode as maxprotection; show configuration; Maximum Availability edit database prima set property LogXptMode=SYNC; edit database physt set property LogXptMode=SYNC; edit configuration set protection mode as maxavailability; show configuration; Maximum Performance with LGWR-Transport If there was a higher Protection Level beforehand, it must be lowered to Maximum Performance now edit configuration set protection mode as maxperformance; edit database prima set property LogXptMode=ASYNC; edit database physt set property LogXptMode=ASYNC; show configuration; Maximum Performance with ARCH-Transport edit configuration set protection mode as maxperformance; edit database prima set property LogXptMode=ARCH; edit database physt set property LogXptMode=ARCH; show configuration; Switchover and Failover Switchover: Primary and Standby exchange their roles dgmgrl>connect sys/oracle@prima switchover to physt; Failover: Emergency, the Primary is destroyed dgmgrl>connect sys/oracle@physt failover to physt; Page 7 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
  • 8. Flashback Database Turn on Flashback for all Databases connect sys/oracle@prima as sysdba @$HOME/skripte/flashbackon; Example of a Flashback of the Physical Standby recover managed standby database cancel; flashback database to timestamp to_timestamp('2005-10-20:16:30:00','yyyy-mm-dd:hh24:mi:ss'); Open Physical Standby Read Only alter database open read only; select ...; shutdown immediate startup mount recover managed standby database [using current logfile] disconnect; After a Failover turn old Primary into a Standby Database NewPrimary > select standby_became_primary_scn from v$database; OldPrimary > flashback database to scn <s.o.>; OldPrimary > alter database convert to physical standby; OldPrimary > shutdown immediate OldPrimary > startup mount Or simply: DGMGRL> reinstate database OldPrimary; Fast-Start-Failover Modify Broker-Configuration EDIT DATABASE prima SET PROPERTY FastStartFailoverTarget = physt; EDIT DATABASE physt SET PROPERTY FastStartFailoverTarget = prima; EDIT CONFIGURATION SET PROPERTY FastStartFailoverThreshold = 20; ENABLE FAST_START FAILOVER; Start the Observer on another computer START OBSERVER; Page 8 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
  • 9. Snapshot Standby Use DGMGRL to convert your Standby DB into a Test System : convert database physt to snapshot standby; You can do testing now as you like while Redo from the Primary is still received. Reconvert the Test System into Standby DB: convert database physt to physical standby; Active Data Guard Interrupt Redo Apply on the Physical Standby: DGMGRL > edit database physt set state=apply-off; Open Physical Standby Read-Only: alter database open read only; Turn on Redo Apply again: DGMGRL > edit database physt set state=apply-on; Backup & Recovery Restore a datafile to the Primary from Physical Standby: RMAN> connect target sys/oracle@physt RMAN> connect auxiliary sys/oracle@prima RMAN> backup as copy datafile 4 auxiliary format=’/home/oracle/prima/users01.dbf’; RMAN> exit; Recover the datafile on the Primary: RMAN> connect target sys/oracle@prima RMAN> recover datafile 4; Page 9 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
  • 10. Appendix VALID_FOR – Configurations Primary and Physical Standby DB_UNIQUE_NAME=prima LOG_ARCHIVE_CONFIG= 'DG_CONFIG=(prima,physt)' LOG_ARCHIVE_DEST_1= 'LOCATION=/home/oracle/prima/archive/ VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=prima' LOG_ARCHIVE_DEST_2= 'SERVICE=physt VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=physt' STANDBY_ARCHIVE_DEST=/home/oracle/prima/archive/ DB_UNIQUE_NAME=physt LOG_ARCHIVE_CONFIG= 'DG_CONFIG=(prima,physt)' LOG_ARCHIVE_DEST_1= 'LOCATION=/home/oracle/physt/archive/ VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=physt' LOG_ARCHIVE_DEST_2= 'SERVICE=prima VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=prima' STANDBY_ARCHIVE_DEST=/home/oracle/physt/archive/ Primary and Logical Standby DB_UNIQUE_NAME=prima LOG_ARCHIVE_CONFIG= 'DG_CONFIG=(prima,logst)' LOG_ARCHIVE_DEST_1= 'LOCATION=/home/oracle/prima/archive1/ VALID_FOR=(ONLINE_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=prima' LOG_ARCHIVE_DEST_2= 'LOCATION=/home/oracle/prima/archive2 VALID_FOR=(STANDBY_LOGFILES,STANDBY_ROLE) DB_UNIQUE_NAME=prima' LOG_ARCHIVE_DEST_3= 'SERVICE=logst VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=logst' STANDBY_ARCHIVE_DEST=/home/oracle/prima/archive2 DB_UNIQUE_NAME=logst LOG_ARCHIVE_CONFIG= 'DG_CONFIG=(prima,logst)' LOG_ARCHIVE_DEST_1= 'LOCATION=/home/oracle/logst/archive1/ VALID_FOR=(ONLINE_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=logst' LOG_ARCHIVE_DEST_2= 'LOCATION=/home/oracle/logst/archive2/ VALID_FOR=(STANDBY_LOGFILES,STANDBY_ROLE) DB_UNIQUE_NAME=logst' LOG_ARCHIVE_DEST_3= 'SERVICE=prima VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=prima' STANDBY_ARCHIVE_DEST=/home/oracle/logst/archive2 Primary, Physical Standby and Logical Standby DB_UNIQUE_NAME=prima LOG_ARCHIVE_CONFIG= 'DG_CONFIG=(prima,physt, logst)' LOG_ARCHIVE_DEST_1= 'LOCATION=/home/oracle/prima/archive/ VALID_FOR= (ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=prima' LOG_ARCHIVE_DEST_2= 'SERVICE=physt VALID_FOR= (ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=physt' LOG_ARCHIVE_DEST_3= 'SERVICE=logst VALID_FOR= (ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=logst' STANDBY_ARCHIVE_DEST= ’/home/oracle/prima/archive’ DB_UNIQUE_NAME=physt LOG_ARCHIVE_CONFIG= 'DG_CONFIG=(prima,physt, logst)' LOG_ARCHIVE_DEST_1= 'LOCATION=/home/oracle/physt/archive/ VALID_FOR= (ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=physt' LOG_ARCHIVE_DEST_2= 'SERVICE=prima VALID_FOR= (ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=prima' LOG_ARCHIVE_DEST_3= 'SERVICE=logst VALID_FOR= (ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=logst’ STANDBY_ARCHIVE_DEST= ’/home/oracle/physt/archive’ DB_UNIQUE_NAME=logst LOG_ARCHIVE_CONFIG= 'DG_CONFIG=(prima,physt, logst)' LOG_ARCHIVE_DEST_1= 'LOCATION=/home/oracle/logst/archive1/ VALID_FOR= (ONLINE_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=logst' LOG_ARCHIVE_DEST_2= 'LOCATION=/home/oracle/logst/archive2/ VALID_FOR= (STANDBY_LOGFILES,STANDBY_ROLE) DB_UNIQUE_NAME=logst' STANDBY_ARCHVE_DEST= ’/home/oracle/logst/archive2’ Page 10 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
  • 11. #initprima.ora compatible=11.1.0 db_block_size=8192 db_name='prima' db_unique_name='prima' instance_name='prima' control_files='/home/oracle/prima/control01.ctl' memory_target=300m undo_management=auto undo_tablespace=undotbs1 log_archive_config='dg_config=(prima,physt,logst)' log_archive_dest_1='location=/home/oracle/prima/archive valid_for=(all_logfiles,all_roles) db_unique_name=prima' standby_file_management=auto processes=100 db_recovery_file_dest='/home/oracle/flashback' db_recovery_file_dest_size=5g db_domain='' diagnostic_dest='/home/oracle/prima' remote_login_passwordfile=exclusive #initphyst.ora compatible=11.1.0 db_block_size=8192 db_name='prima' db_unique_name='physt' instance_name='physt' control_files='/home/oracle/physt/control01.ctl' memory_target=300m undo_management=auto undo_tablespace=undotbs1 db_file_name_convert='/home/oracle/prima','/home/oracle/physt' log_file_name_convert='/home/oracle/prima','/home/oracle/physt' log_archive_config='dg_config=(prima,physt,logst)' log_archive_dest_1='location=/home/oracle/physt/archive valid_for=(all_logfiles,all_roles) db_unique_name=physt' standby_file_management=auto processes=100 db_recovery_file_dest_size=5g db_recovery_file_dest='/home/oracle/flashback' db_domain='' diagnostic_dest='/home/oracle/physt' remote_login_passwordfile=exclusive Page 11 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
  • 12. #initlogst.ora compatible=11.1.0 db_block_size=8192 db_name='prima' db_unique_name='logst' instance_name='logst' control_files='/home/oracle/logst/control01.ctl' memory_target=300m undo_management=auto undo_tablespace=undotbs1 undo_retention=3600 db_file_name_convert='/home/oracle/prima','/home/oracle/logst' log_file_name_convert='/home/oracle/prima','/home/oracle/logst' log_archive_config='dg_config=(prima,physt,logst)' log_archive_dest_1='location=/home/oracle/logst/archive1 valid_for=(online_logfiles,all_roles) db_unique_name=logst' log_archive_dest_2='location=/home/oracle/logst/archive2 valid_for=(standby_logfiles,standby_roles) db_unique_name=logst' standby_file_management=auto processes=100 db_recovery_file_dest_size=5g db_recovery_file_dest='/home/oracle/flashback' db_domain='' diagnostic_dest='/home/oracle/logst' remote_login_passwordfile=exclusive #physt.sh mkdir /home/oracle/physt mkdir /home/oracle/physt/bdump mkdir /home/oracle/physt/cdump mkdir /home/oracle/physt/udump mkdir /home/oracle/physt/archive mkdir /home/oracle/physt/flashback export ORACLE_SID=physt orapwd file=/u01/app/oracle/product/11.1.0/db_1/dbs/orapwphyst password=oracle force=y ignorecase=y #logst.sh mkdir /home/oracle/logst mkdir /home/oracle/logst/bdump mkdir /home/oracle/logst/cdump mkdir /home/oracle/logst/udump mkdir /home/oracle/logst/archive export ORACLE_SID=logst orapwd file=/u01/app/oracle/product/10.2.0/db_1/dbs/orapwlogst password=oracle force=y ignorecase=y --flashbackon.sql connect sys/oracle@prima as sysdba alter system set db_recovery_file_dest_size=5g; alter system set db_recovery_file_dest='/home/oracle/prima/flashback'; shutdown immediate startup mount alter database flashback on; alter database open; connect sys/oracle@logst as sysdba Page 12 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)
  • 13. alter system set db_recovery_file_dest_size=5g; alter system set db_recovery_file_dest='/home/oracle/logst/flashback'; alter database stop logical standby apply; shutdown immediate startup mount alter database flashback on; alter database open; alter database start logical standby apply immediate; connect sys/oracle@physt as sysdba alter system set db_recovery_file_dest_size=5g; alter system set db_recovery_file_dest='/home/oracle/physt/flashback'; recover managed standby database cancel; alter database flashback on; recover managed standby database using current logfile disconnect; #listener.ora LISTENER = (DESCRIPTION_LIST = (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC)) ) (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = yourhostname)(PORT = 1521)) ) ) SID_LIST_LISTENER = (SID_LIST = (SID_DESC = (SID_NAME = PLSExtProc) (ORACLE_HOME = /u01/app/oracle/product/11.1.0/db_1) (PROGRAM = extproc) ) (SID_DESC = (GLOBAL_DBNAME = prima_DGMGRL) (ORACLE_HOME = /u01/app/oracle/product/11.1.0/db_1) (SID_NAME = prima) ) (SID_DESC = (GLOBAL_DBNAME = physt_DGMGRL) (ORACLE_HOME = /u01/app/oracle/product/11.1.0/db_1) (SID_NAME = physt) ) (SID_DESC = (GLOBAL_DBNAME = logst_DGMGRL) (ORACLE_HOME = /u01/app/oracle/product/11.1.0/db_1) (SID_NAME = logst) ) ) Page 13 of 13 ORACLE 11g Data Guard on the Command Line - Uwe Hesse (ORACLE University)