设置RAC DB归档

1、关闭集群数据库

srvctl stop database -d RAC

2、将节点一设置为归档模式

sqlplus / as sysdba

startup mount

alter database archivelog;

alter database flashback on;

alter database force logging;

alter database open;

select name, log_mode, flashback_on, force_logging from v$database;

3、开启节点二

srvctl start instance -d rac -i RAC2

4、查看节点二归档模式

sqlplus / as sysdba

select name, log_mode, flashback_on, force_logging from v$database;

posted @ 2019-01-21 10:51  orcl  阅读(188)  评论(0编辑  收藏  举报