Link to home
Start Free TrialLog in
Avatar of sventhan
sventhanFlag for United States of America

asked on

DataGuard | How to Make Standby as an Independent DB?

I had a primary database and two physical standby databases in a Data Guard configuration.

I already disconnected one of the standby from the DG configuration using the following...


-- on priamry
ALTER SYSTEM SET LOG_ARCHIVE_DEST_STATE_2=DEFER;

--standby
ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
Shutdown immediate;

What are the next steps to make this  as a single fully operational DB?


Thanks,
~sve
ASKER CERTIFIED SOLUTION
Avatar of johnsone
johnsone
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sventhan

ASKER

Thanks John!

I'll try this and let you know.