Dr drill / switc over switch back
In every company it will be taken for every 3 months (quarterly)
Production
At the time of any crash in production data the standby will switch over as production database.
Alter database commit to switchover to physical standby with session;
Select switchover _ status from v$database;
Output: to stand
If output: failed destination
(any archives missing)
Take full db backup
Current mode : read/write
End of redo (with the help of win scp send this to stand by in one location or path)
After stand by changing to primary use below command to actice
[Alter database activate standby database]
Stand by
Alter database commit to switchover to primary;
Select switchover _ status from v$database;
Output: to prod
If output: failed destination
Current mode : to stand (mount)
End of redo
Alter database commit to switch over to primary
Shut immediate
Start up in mount mode
Check control type file
Current read/write
Stand by changed to primary
Comments
Post a Comment