top of page

Oracle Data Guard Protection Modes

A Data Guard configuration always runs in one of three data protection modes (also called as redo transport rules)

oracle data guard protection modes - dataguard modes

  • By default, the protection mode is MAX PERFORMANCE. If you look above, MAX PERFORMANCE uses ASYNC redo transport and rest other protection modes uses SYNC protection mode.

  • Also, looking at MAX PROTECTION and MAX AVAILABILITY, we can say that the MAX PROTECTION mode is not used in real time. The main reason is if standby unavailable, primary will shut down.

  • The ultimate protection modes you must use are: MAX PERFORMANCE and MAX AVAILABILITY!


Switch from Max Performance to Max Availability Protection Mode


Verify the broker configuration, check if it’s enabled and make sure log apply is enabled

dgmgrl sys/oracle@proddb
show configuration 
show database proddb 
show database proddb_st 
edit database proddb_st set state=apply-on;

Change LNS mode from ASYN to SYNC

EDIT DATABASE proddb_st SET PROPERTY LogXptMode='SYNC'; 
EDIT CONFIGURATION SET PROTECTION MODE AS MaxAvailability;


Switch from Max Availability to Max Performance Protection Mode


Verify the broker configuration, check if it’s enabled and make sure log apply is enabled

dgmgrl sys/oracle@proddb

show configuration 
show database proddb 
show database proddb_st 
edit database proddb_st set state=apply-on;

Change LNS mode from ASYN to SYNC

EDIT DATABASE proddb_st SET PROPERTY LogXptMode='ASYNC'; 
EDIT CONFIGURATION SET PROTECTION MODE AS MaxPerformance;

Related Posts

Heading 2

Add paragraph text. Click “Edit Text” to customize this theme across your site. You can update and reuse text themes.

bottom of page