oracle9204(physical dg)配置_指南
首先強調一點,9204dg配置同10g差不多,就是區別在以下幾點上:
1,備庫spfile(pfile)
*.log_archive_start=TRUE
lock_name_space=second --其值為:sid(異於主庫喲)
instance_name=second --同上理
*.remote_archive_enable='TRUE'
2,構建dg三大部件,注意事項如下:
a,shutdown immediate主庫,cp或tar(select name from v$datafile)的資料檔案到指定地
b,startup 主庫,alter database create standby controlfile as '';注意是open,而非10g中的執行在mount狀態
c,構建用於備庫pfile
d,啟動備庫時,先:startup mount,後:alter database mount standby database;
3,對於密碼檔案(主備庫),在備庫$ORACLE_HOME/dbs,請構建orapw,而非同於10g的orapw$ORACLE_SID,呵,,不然你試下,提示找不到密碼檔案(此出錯是在alter database mount standby database,你親愛的備庫喲)
3,如果你備庫各對應的dump目錄建立不全或不準確,會在startup nomount備庫,報如下錯誤:
[oracle@9istandby centos]$ sqlplus '/as sysdba'
SQL*Plus: Release 9.2.0.4.0 - Production on Thu Feb 4 14:46:29 2010
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to an idle instance.
SQL> startup nomount pfile='/oracle/oradata/centos/init9istandby.ora'
ORA-00444: background process "RECO" failed while starting
ORA-07446: sdnfy: bad value '' for parameter .
SQL> host oerr ora 00444
00444, 00000, "background process \"%s\" failed while starting"
// *Cause: Usually due to a bad (or non-existent) background process image.
// *Action: Get a good background process image.
SQL> shutdown immediate
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
Linux Error: 2: No such file or directory
SQL> exit
Disconnected
[oracle@9istandby centos]$ sqlplus '/as sysdba'
SQL*Plus: Release 9.2.0.4.0 - Production on Thu Feb 4 14:48:19 2010
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to an idle instance.
SQL> startup nomount pfile='/oracle/oradata/centos/init9istandby.ora'
SQL> startup nomount pfile='/oracle/oradata/centos/init9istandby.ora'
ORA-00444: background process "CKPT" failed while starting
ORA-07446: sdnfy: bad value '' for parameter .
SQL> host oerr ora 07446
07446, 00000, "sdnfy: bad value '%s' for parameter %s."
// *Cause: The directory specified as the value for the stated parameter could
// not be used.
// *Action: Make sure the directory you have specified is a valid
// directory/file specification.
SQL> exit
1,備庫spfile(pfile)
*.log_archive_start=TRUE
lock_name_space=second --其值為:sid(異於主庫喲)
instance_name=second --同上理
*.remote_archive_enable='TRUE'
2,構建dg三大部件,注意事項如下:
a,shutdown immediate主庫,cp或tar(select name from v$datafile)的資料檔案到指定地
b,startup 主庫,alter database create standby controlfile as '';注意是open,而非10g中的執行在mount狀態
c,構建用於備庫pfile
d,啟動備庫時,先:startup mount,後:alter database mount standby database;
3,對於密碼檔案(主備庫),在備庫$ORACLE_HOME/dbs,請構建orapw,而非同於10g的orapw$ORACLE_SID,呵,,不然你試下,提示找不到密碼檔案(此出錯是在alter database mount standby database,你親愛的備庫喲)
3,如果你備庫各對應的dump目錄建立不全或不準確,會在startup nomount備庫,報如下錯誤:
[oracle@9istandby centos]$ sqlplus '/as sysdba'
SQL*Plus: Release 9.2.0.4.0 - Production on Thu Feb 4 14:46:29 2010
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to an idle instance.
SQL> startup nomount pfile='/oracle/oradata/centos/init9istandby.ora'
ORA-00444: background process "RECO" failed while starting
ORA-07446: sdnfy: bad value '' for parameter .
SQL> host oerr ora 00444
00444, 00000, "background process \"%s\" failed while starting"
// *Cause: Usually due to a bad (or non-existent) background process image.
// *Action: Get a good background process image.
SQL> shutdown immediate
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
Linux Error: 2: No such file or directory
SQL> exit
Disconnected
[oracle@9istandby centos]$ sqlplus '/as sysdba'
SQL*Plus: Release 9.2.0.4.0 - Production on Thu Feb 4 14:48:19 2010
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to an idle instance.
SQL> startup nomount pfile='/oracle/oradata/centos/init9istandby.ora'
SQL> startup nomount pfile='/oracle/oradata/centos/init9istandby.ora'
ORA-00444: background process "CKPT" failed while starting
ORA-07446: sdnfy: bad value '' for parameter .
SQL> host oerr ora 07446
07446, 00000, "sdnfy: bad value '%s' for parameter %s."
// *Cause: The directory specified as the value for the stated parameter could
// not be used.
// *Action: Make sure the directory you have specified is a valid
// directory/file specification.
SQL> exit
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-626812/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORACLE10G DG配置下Physical Standby Database的管理OracleDatabase
- 【DG】Data Guard搭建(physical standby)
- Oracle DG建立Physical Standby DatabaseOracleDatabase
- 配置Oracle physical DataGuardOracle
- oracle9204(9i)_dg(data guard)_重新命名主庫資料檔案_指南_轉摘官檔Oracle
- oracle10g data guard(dg)__flashback_physical databaseOracleDatabase
- Oracle 18c&19c physical dg切換總結Oracle
- oracle9204(9i)_dg(data guard)__Tuning Logical Standby DatabasesOracleDatabase
- DG搭建配置方案
- oracle9204(9i)_dg(data guard)_archive gap_query_apply_transmitOracleHiveAPPMIT
- 【DG】dg中如何配置多個後臺observerServer
- Oracle DG管理Broker配置Oracle
- oracle實驗記錄 (oracle 10G dataguard(7)physical dg轉換)Oracle
- dataguard安裝和配置(DG)
- Changing Primary DB Character Set without Recreate DG Physical Standby_1124165.1
- ORACLE10g DataGuard 配置Physical Standby DatabaseOracleDatabase
- oracle9204(9i)_linux_logical db構建指南OracleLinux
- oracle9204(9i)_linux_logical standby_switchover操作指南OracleLinux
- Oracle DG Broker配置的管理週期Oracle
- dg broker配置的問題及分析
- 配置 Oracle 10g RAC primary + RAC physical standby dataguardOracle 10g
- dg 配置,建議關閉shared 模式。模式
- oracle 11g dg broker開啟和配置Oracle
- Oracle DG 管理Broker配置成員的狀態Oracle
- Oracle物理DG自動切換——Dataguard Broker配置Oracle
- 配置dg broker的問題分析及修復
- zabbix中文配置指南
- KDE配置指南(轉)
- Physical Storage StructuresStruct
- Physical Database LimitsDatabaseMIT
- Oracle physical standbyOracle
- 一步一步搭建11gR2 rac+dg之DG 機器配置(七)
- oracle9i(9204)dg(data guard)_adding and dropping online redo logs_物理_physicalOracle
- CiscoPIX防火牆配置指南防火牆
- linux vnc配置指南LinuxVNC
- JBoss7配置指南
- LILO配置指南(轉)
- GNOME的配置指南(轉)