How to Create Active DataGuard


For active dataguard:-

Create physical standby by following my post How to Create Physical Standby and then on Standby execute following:-

SHUTDOWN IMMEDIATE;
STARTUP MOUNT;
ALTER DATABASE OPEN READ ONLY;
ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT FROM SESSION;

That’s it, Now you can see that your physical standby is in read only mode, as promised by the Active DataGuard feature.

select name, open_mode, database_role from v$database;

One thought on “How to Create Active DataGuard

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.