oracle11g dataguard切換

甲骨文技術支援發表於2018-08-01

1.檢視主庫是否滿足切換條件

SQL> select switchover_status from v$database;
SWITCHOVER_STATUS
----------------------------------------
TO STANDBY

有時候會顯示 SESSION ACTIVE,這表示當前還有活動的會話連線。

2.執行下面的命令切換


SQL> alter database commit to switchover to physical standby;
Database altered.


如果第一步切換條件檢視顯示 SESSION ACTIVE,那麼在這裡使用下面命令

SQL> alter database commit to switchover to physical standby WITH SESSION SHUTDOWN;

 3.關閉資料庫重啟到 mount

SQL> shutdown immediate;
ORA-01012: not logged on
SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
[oracle@oraclerac2 ~]$ sqlplus "/ as sysdba"
SQL*Plus: Release 11.2.0.4.0 Production on Wed Aug 1 17:45:33 2018
Copyright (c) 1982, 2013, Oracle.  All rights reserved.
Connected to an idle instance.
SQL> startup mount;
ORACLE instance started.
Total System Global Area 2.1379E+10 bytes
Fixed Size    2262656 bytes
Variable Size 2885683584 bytes
Database Buffers 1.8455E+10 bytes
Redo Buffers   36073472 bytes
Database mounted.


 4.用 Read Only 模式開啟

SQL> alter database open read only;
Database altered.


 5.啟動 Redo 應用模式


SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING CURRENT LOGFILE DISCONNECT FROM SESSION;
Database altered.

6.切換後檢視角色

SQL> select database_role,switchover_status from v$database;
DATABASE_ROLE SWITCHOVER_STATUS
-------------------------------- ----------------------------------------
PHYSICAL STANDBY TO PRIMARY

7.以上操作都是原來的主庫完成的,下面的操作在原來的備庫完成


8.檢視 Standby Database 是否滿足切換條件

SQL> select database_role,switchover_status from v$database;
DATABASE_ROLE SWITCHOVER_STATUS
-------------------------------- ----------------------------------------
PHYSICAL STANDBY TO PRIMARY

9.執行下面命令進行切換

SQL> alter database commit to switchover to primary;
Database altered.

10.開啟資料庫

SQL> alter database open;
Database altered.

11.切換後檢視角色

SQL> select database_role,switchover_status from v$database;
DATABASE_ROLE SWITCHOVER_STATUS
-------------------------------- ----------------------------------------
PRIMARY  TO STANDBY


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20893244/viewspace-2168909/,如需轉載,請註明出處,否則將追究法律責任。

相關文章