單例項和RAC打造的ORACLE STREAM(一)
主節點: rx8640伺服器 HPUX 11.23作業系統 IP地址128.199.38.32 資料 庫:ORACLE 10.2.0.1 ORACLE_SID:ora Global_name:ora 副節點一 (ORACLE RAC): rx8640伺服器 HPUX 11.23作業系統 IP地址128.199.38.27 資料 庫:ORACLE 10.2.0.1 ORACLE_SID:storm1 Global_name:storm1 副節點二(ORACLE RAC): rx8640伺服器 HPUX 11.23作業系統 IP地址 128.199.38.28 資料庫:ORACLE 10.2.0.1 ORACLE_SID:storm2 Global_name:storm2 ORACLE RAC全貌: 根據前面的介紹,此次STREAM實驗以單節點資料庫(sid為ora)和ORACLE RAC(sid分別為storm1和storm2)構建而成,前者為主庫,後者為備庫。要達到的目的是基於table級的流 (stream)複製,也就是在主庫ora上面進行的操作能瞬時間同步到ORACLE RAC。下面進行具體操作過程。 第一步,修改主庫和備庫的引數檔案: 主庫ora: SQL> alter system set aq_tm_processes=2 scope=both; SQL> alter system set global_names=true scope=both; SQL> alter system set job_queue_processes=10 scope=both; SQL> alter system set parallel_max_servers=20 scope=both; SQL> alter system set undo_retention=3600 scope=both; SQL> alter system set nls_date_format='YYYY-MM-DD HH24:MI:SS' scope=spfile; SQL> alter system set streams_pool_size=25M scope=spfile; SQL> alter system set utl_file_dir='*' scope=spfile; SQL> alter system set open_links=4 scope=spfile; 重啟資料庫。 備庫storm1: SQL> create pfile='/arch/pfilestorm.ora' from spfile; File created. SQL> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. vi /arch/pfilestorm.ora *.aq_tm_processes=2 *.global_names=true *.job_queue_processes=10 *.parallel_max_servers=20 *.undo_retention=3600 *.nls_date_format='YYYY-MM-DD HH24:MI:SS' *.streams_pool_size=25M *.utl_file_dir='*' *.open_links=4 SQL> startup pfile='/arch/pfilestorm.ora'; ORACLE instance started. Total System Global Area 612368384 bytes Fixed Size 1995664 bytes Variable Size 184552560 bytes Database Buffers 423624704 bytes Redo Buffers 2195456 bytes Database mounted. Database opened. SQL> create spfile from pfile='/arch/pfilestorm.ora'; File created. SQL> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. SQL> startup ORACLE instance started. Total System Global Area 612368384 bytes Fixed Size 1995664 bytes Variable Size 184552560 bytes Database Buffers 423624704 bytes Redo Buffers 2195456 bytes Database mounted. Database opened. 檢視引數修改是否生效: SQL> show parameter open_links NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ open_links integer 4 open_links_per_instance integer 4 備庫storm2: SQL> shutdown immediate; Database closed. Database dismounted. ORACLE instance shut down. SQL> startup ORACLE instance started. Total System Global Area 612368384 bytes Fixed Size 1995664 bytes Variable Size 226495600 bytes Database Buffers 381681664 bytes Redo Buffers 2195456 bytes Database mounted. Database opened. 檢視引數修改是否生效: SQL> show parameter open_links NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ open_links integer 4 open_links_per_instance integer 4 下面要開始講主庫和備庫調整為歸檔模式。 come from : |
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/90618/viewspace-659945/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 單例項和RAC打造的ORACLE STREAM(完)單例Oracle
- 單例項和RAC打造的ORACLE STREAM(四)單例Oracle
- 單例項和RAC打造的ORACLE STREAM(三)單例Oracle
- 單例項和RAC打造的ORACLE STREAM(二)單例Oracle
- oracle單例項轉RACOracle單例
- Oracle DataBase單例項遷移到Oracle RACOracleDatabase單例
- oracle rac及單例項開啟歸檔Oracle單例
- Oracle 11g RAC 配置單例項 DataGuardOracle單例
- RAC起單例項make單例
- oracle單例項通過dataguard遷移到RAC 轉Oracle單例
- RAC 例項 遷移到 單例項 -- 使用RMAN Duplicate單例
- 一次RAC單例項DOWN機的診斷單例
- oracle 10g rac 單例項恢復至ORACLE10G RAC RMANOracle 10g單例
- RAC+DG(asm單例項)ASM單例
- rac恢復到單例項單例
- 搭建RAC到單例項DG單例
- 單例項恢復至RAC單例
- Oracle 11g RAC到單例項OGG同步Oracle單例
- RAC+單例項DG的切換單例
- rac到單例項的rman恢復單例
- oracle rac 單個例項不能生成awr報告的問題Oracle
- oracle的單例項併發控制:Lock(一)Oracle單例
- Oracle11g使用rman從單例項遷移到racOracle單例
- Oracle 9i RAC向單例項遷移手記Oracle單例
- oracle10g單例項遷移至3節點RACOracle單例
- Oracle 10g 安裝及單例項遷移到RACOracle 10g單例
- 單例項和RAC下建立表空間的小區別單例
- 單例項opatch出現RAC資訊單例
- OGG搭建(rac到-->單例項)單例
- RAC asm恢復到單例項ASM單例
- 記錄一次Oracle 11.2.0.4 RAC異地恢復到單例項Oracle單例
- 連線RAC資料庫中單個例項(一)資料庫
- 10g rac asm 恢復到 單例項(一)ASM單例
- 單例項恢復RAC資料庫步驟(一)單例資料庫
- 從單例項資料庫轉換到RAC環境——RAC的建立和配置單例資料庫
- 判斷oracle是否是rac例項Oracle
- Oracle 11g RAC 配置單例項 DataGuard(通過 DUPLICATE 方式)Oracle單例
- 單例項備份恢復成RAC單例