DataGuard搭建邏輯StandBy
物理StandBy優點是效率高,缺點是隻讀模式不能恢復,恢復模式不能查詢.
邏輯StandBy可以開啟資料庫,同時進行恢復.
搭建邏輯StandBy首先需要一個物理StandBy的環境.
http://blog.itpub.net/29254281/viewspace-1315088/
1.在備庫終止恢復模式
ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
2.修改主庫的歸檔目標,執行過程建立相關物件
alter system set log_archive_dest_2='service=standby valid_for=(all_logfiles,all_roles) db_unique_name=orcl' scope=both;
execute dbms_logstdby.build;
3.備庫執行轉換命令,並開啟資料庫
alter database recover to logical standby orcl;
shutdown immediate;
startup mount;
alter database open resetlogs;
邏輯StandBy可以開啟資料庫,同時進行恢復.
搭建邏輯StandBy首先需要一個物理StandBy的環境.
http://blog.itpub.net/29254281/viewspace-1315088/
1.在備庫終止恢復模式
ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
alter system set log_archive_dest_2='service=standby valid_for=(all_logfiles,all_roles) db_unique_name=orcl' scope=both;
alter database recover to logical standby orcl;
shutdown immediate;
startup mount;
alter database open resetlogs;
4.備庫應用日誌進行恢復.
alter database start logical standby apply;
alter database start logical standby apply;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29734436/viewspace-1327357/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- DataGuard搭建物理StandBy
- 配置 Oracle 10g 單例項物理dataguard和邏輯standbyOracle 10g單例
- 一步一步學DataGuard(14)邏輯standby之switchover
- 一步一步學DataGuard(13)邏輯standby之建立示例
- 一步一步學DataGuard(15)邏輯standby之failoverAI
- 物理standby和邏輯standby的區別
- 【DATAGUARD】DG系列之11g邏輯備庫的搭建
- ORACLE10G 物理standby轉為邏輯standbyOracle
- 物理Standby資料庫及邏輯Standby資料庫(Physical Standby & Logical Standby)資料庫
- 邏輯 rac standby和物理 rac standby的switchover 和 failoverAI
- 邏輯Standby建立及日常管理,優化優化
- 優化邏輯Standby的資料同步效能優化
- 【DataGuarad】邏輯遷移與standby備庫
- dataguard之邏輯備庫表空間不足
- DataGuard:Physical Standby Switchover
- Oracle physical standby中的邏輯備份(exp命令)Oracle
- Oracle 10g 邏輯Standby 建立及注意點Oracle 10g
- dataguard回顧之安裝——建立邏輯備庫
- 邏輯複製主從搭建
- Dataguard(Standby) 後臺程式
- DataGuard:Physical Standby FailoverAI
- DataGuard:Logical Standby Switchover
- 管理邏輯STANDBY資料庫——DATA GUARD概念和管理資料庫
- 建立邏輯STANDBY資料庫——DATA GUARD概念和管理資料庫
- dataguard之邏輯備庫移動資料檔案
- dataguard 搭建 oracle_sid不同 2節點 primary+standbyOracle
- dataguard 搭建 oracle_sid相同 2節點 primary+standbyOracle
- Oracle11g R2之Dataguard搭建物理standbyOracle
- 搭建邏輯Data Guard 12c
- 4 Creating a Logical Standby Database 建立邏輯備庫Database
- 邏輯STANDBY負載高,應用緩慢的解決負載
- oracle 之dataguard standby 切換Oracle
- Oracle 9I dataguard(standby)Oracle
- DataGuard:Logical Standby FailoverAI
- LightDB/Postgres邏輯複製的搭建
- 透過Oracle 11g 邏輯standby實現BI的需求Oracle
- 通過Oracle 11g 邏輯standby實現BI的需求Oracle
- [zt] Oracle如何配置邏輯備用資料庫(Logical Standby)Oracle資料庫