Today when I tested dataguard configuration I saw ORA-16826 error.
DGMGRL> show configuration;
Configuration - DGMANAGER
Protection Mode: MaxPerformance
Databases:
PROD - Primary database
PRODST - Physical standby database
Warning: ORA-16826: apply service state is inconsistent with the DelayMins property
Fast-Start Failover: DISABLED
Configuration Status:
WARNING
DGMGRL>
This is because I managed my standby database with NODELAY option.
ALTER DATABASE RECOVER MANAGED STANDBY DATABASE THROUGH ALL SWITCHOVER DISCONNECT NODELAY;
To fix this cancel recover managed:
SQL> alter database recover managed standby database cancel;
Database altered.
Start with current logfile option:
SQL> alter database recover managed standby database using current logfile disconnect;
Database altered.
Try again
DGMGRL> show configuration;
Configuration - DGMANAGER
Protection Mode: MaxPerformance
Databases:
PROD - Primary database
PRODST - Physical standby database
Fast-Start Failover: DISABLED
Configuration Status:
SUCCESS
DGMGRL>
Subscribe to:
Post Comments (Atom)
Cannot access dba_directories inside procedure
Recently I faced one of familiar Oracle error ORA -00942 : table or view does not exist I got it in while compiling procedure, becaus...
-
While shutting down my TEST database process was hanged. Then I had to use shutdown abort. But when I wanted to start database it did not ...
-
Today after restarting primary and standby database servers I faced with ORA-16810 error DGMGRL> show configuration; Configuration - ...
No comments:
Post a Comment