Sunday, March 1, 2015

How to change the protection mode

Protection modes in Data Guard
  There are three protection modes in Data Guard: Maximum protection, maximum availability and Maximum performance .
  The protection mode can be determined by the protection_mode (and protection_level) column in v$database


Changing the protection mode
alter database set standby database to maximize [protection|availability|performance]

No comments:

Post a Comment

How to create user in MY SQL

Create  a new MySQL user Account mysql > CREATE USER ' newuser '@'localhost' IDENTIFIED BY ' password '...