goldengate + asm + rac
add extract ext1,tranlog,threads 2,begin now
TRANLOGOPTIONS DBLOGREADER
2012-01-10 10:49:52 ERROR OGG-00446 Oracle GoldenGate Capture for Oracle, ext1.prm: Getting attributes for ASM file +DATA/rgst/onlinelog/redo103.log, SQL
2012-01-10 10:49:52 ERROR OGG-01668 Oracle GoldenGate Capture for Oracle, ext1.prm: PROCESS ABENDING.
Troubleshooting ORA-15173 in Oracle GoldenGate Extract When Reading Redo Logs on ASM [ID 1315404.1] | |||||
| |||||
修改時間 13-MAY-2011 型別 TROUBLESHOOTING 狀態 PUBLISHED |
In this Document
Purpose
Last Review Date
Instructions for the Reader
Troubleshooting Details
Applies to:
Middleware > Data Integration > GoldenGate
Information in this document applies to any platform.
Purpose
When redo/archived logs are on ASM, Oracle GoldenGate (OGG) extract may read them in two ways:
1. in 10.2.0.5 or up in Oracle 10g, or 11.2.0.2 in Oracle 11g, OGG version 11.1 and up extract may read the redo/archived logs from rdbms instance directly using the parameter "TRANLOGOPTIONS DBLOGREADER"
2. for other version combinations, the extract must login to the ASM instance to read the redo/archived logs on ASM.
This note describes for the setup 2., how to troubleshoot the error ORA-15173
i.e..,
2011-04-18 00:49:11 ERROR OGG-00446 Getting attributes for ASM file +REDO/oramcbta/onlinelog/group_3.268.748539783, SQL
ORA-15173: entry 'oramcbta' does not exist in directory '/'
Last Review Date
April 20, 2011
Instructions for the Reader
Troubleshooting Details
1. make sure the RDBMS/ASM version and OGG build match each other
2. make sure the OGG extract is logging in to the right ASM instance
e.g. with parameter: TRANLOGOPTIONS ASMUSER sys@ASM, ASMPASSWORD XYZ
To test this, perform. these actions:
(1) set the environment the same as the OGG environment
(2) test the login via sqlplus3. after confirming 2., restart OGG manager and restart extract
sqlplus sys@ASM as sysdba
select instance_name from v$instance;
4. if 3. fails, login to ASM instance as described in step 2. and run the following pl/sql
fileType varchar2(4000);
fileName varchar2(4000);
fileSz number;
blkSz number;
hdl number;
plkSz number;
data_buf raw(4096);
begin
fileName := '+REDO/oramcbta/onlinelog/group_3.268.748539783'; --- filename may need to be replaced
dbms_diskgroup.getfileattr(fileName,fileType,fileSz, blkSz);
dbms_diskgroup.open(fileName,'r',fileType,blkSz, hdl,plkSz, fileSz);
dbms_drs.sleep(5); -- sleep for 5 seconds
dbms_diskgroup.close(hdl);
end;
/
If this does not provide determination of the cause, please contact Oracle GoldenGate support by opening an SR ticket.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/756652/viewspace-714657/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- RAC+ASM+DATAGUARDASM
- 【RAC】asm_diskgroups 引數ASM
- RAC安裝【AIX 7 + 11.2.0.4 + ASM】AIASM
- RAC+DG(asm單例項)ASM單例
- RAC和ASM環境下打patchASM
- Oracle RAC日常運維-ASM磁碟擴容Oracle運維ASM
- Oracle RAC環境下ASM磁碟組擴容OracleASM
- 【ASM】RAC19C因引數設定不當,asm無法啟動ASM
- RAC之grid叢集安裝及ASM磁碟組配置ASM
- Overview of Oracle Flex ASM In Oracle 19c RAC-20220111ViewOracleFlexASM
- ORACLE RAC 11.2.0.4 ASM加盤導致叢集重啟之ASM sga設定過小OracleASM
- oracle RAC+DG 擴容ASM和表空間(Linux)OracleASMLinux
- Oracle RAC ASM磁碟組擴容時遇到的VIP漂移OracleASM
- 【ASM】Oracle RAC css啟動報錯"Duplicate voting file found"ASMOracleCSS
- RAC節點啟動失敗--ASM無法連線ASM
- 虛擬機器搭建rac ASM盤啟動失敗虛擬機ASM
- ORACLE11GR2 RAC檔案系統變更成ASM EXTEND RAC及高可用測試OracleASM
- ORACLE11GR2 RAC解除安裝ASM例項步驟OracleASM
- 如何檢視Oracle RAC的asm磁碟的udev對應關係OracleASMdev
- 【ASK_ORACLE】Oracle RAC配置ASM Filter Driver(ASMFD)(一)ASMFD簡介OracleASMFilter
- rac壞了asm盤進不去怎麼辦?amdu來辦幫你ASM
- 通過ORACLE VM virtualbox環境安裝oracle 11G RAC(ASM)OracleASM
- ORACLE11.2.0.4 RAC+ ASM安裝方法 (作業系統CENTOS7.6)OracleASM作業系統CentOS
- 重建共享(db或asm)密碼檔案 in Oracle 19c RAC-20220209ASM密碼Oracle
- 【BUILD_ORACLE】Oracle RAC配置ASM Filter Driver(ASMFD)(二)詳細配置步驟UIOracleASMFilter
- Oracle 19c rac安裝,只能啟動一個節點的ASMOracleASM
- 12c複製 RAC ASM中的密碼檔案到檔案系統ASM密碼
- ORACLE RAC ASM資料檔案遷移OMF檔案報錯ORA-01276解決OracleASM
- 紅色警報 ORACLE RAC 11.2.0.4 FOR SOLARIS 10 ASM 和DB因叢集心跳丟失重啟OracleASM
- GoldenGate Logdump基本使用Go
- ORACLE GoldenGate Initial LoadOracleGo
- About the Oracle GoldenGate TrailOracleGoAI
- 使用OpenFiler來模擬儲存配置RAC中ASM共享盤及多路徑(multipath)的測試ASM
- Oracle 11.2.0.4 rac for aix acfs異常環境的克隆環境ASM磁碟組掛載緩慢OracleAIASM
- Oracle GoldenGate 18.1釋出OracleGo
- GoldenGate GGSCI監控命令Go
- GoldenGate的基本配置流程Go
- goldengate的sqlexec測試GoSQL