data grand模式下从库默认是只读模式。要想满足应用的使用需求,需要将从库改为可读写模式。
否则在修改和插入数据时提示:
ERROR at line 1:
ORA-16003: standby database is restricted to read-only access
解决该错误的具体操作如下:
#将数据库切换为主库
sql> alter database commit to switchover to primary
#取消自动恢复模式
sql> alter database recover managed standby database finish
#将数据库修改为可读写模式
sql> alter database open read write;
更多操作命令请参考:物理standby database的日常维护
原文链接:https://www.f2er.com/oracle/207618.html