檢查Data Guard 主庫,發現log有如下資訊:
Wed Oct 13 17:05:11 2010
RFS: Possible network disconnect with primary database
RFS: Destination database mount ID mismatch [0x4b1b0155:0x4b1b40c1]
RFS: client instance is standby database instead of primary
RFS: Not using real application clusters
查看備庫,也有相關資訊:
KUP-04021: field formatting error for field TEXT
KUP-04023: field start is after end of record
KUP-04101: record 989 rejected in file D:/oracle/admin/orcl/bdump/alert_orcl.log
KUP-04021: field formatting error for field TEXT
KUP-04023: field start is after end of record
KUP-04101: record 1038 rejected in file D:/oracle/admin/orcl/bdump/alert_orcl.log
Oracle 的解釋:
Symptoms
Standby alert log reports "RFS: Possible network disconnect with primary database"
At the standby DB side I get this error every minute.
RFS: Possible network disconnect with primary database
Standby database ID mismatch [0xAAAA:0xBBBBB]
Archive log transfer/apply works O.K.
Cause
The (error) message may be triggered by another database that has log_archive_dest_2 pointing to standby instance of (error) message .
RFS process tries to communicate with the instance.
Solution
Check if you have DB with mismatched ID and its log_archive_dest_X parameter value.
If found one but not in primary/standby config, disable log_archive_dest_2 to the instance, ie
From the error message of "Standby database ID mismatch [0xAAAA:0xBBBBB]"
Convert the hex number of first argument, 0xAAAA to decimal value using calculator
Then search db with the dbid.
SQL> select dbid from v$database;
SQL> alter system set log_archive_dest_2_state=defer;
根據Oracle 的說法,是log_archive_dest_2參數的問題,檢查了一下備庫的參數,果然如此:
SQL> show parameter log_archive_dest_2
NAME TYPE VALUE
------------------------------------ ----------- --------------------
log_archive_dest_2 string service=orcl_1 (指向了主庫)
SQL> alter system set log_archive_dest_2_state=defer;
系統已更改。
修改之後,再次檢查主備的alert log。都沒有了這種錯誤。
------------------------------------------------------------------------------
Blog: http://blog.csdn.net/tianlesoftware
網上資源: http://tianlesoftware.download.csdn.net
相關視頻:http://blog.csdn.net/tianlesoftware/archive/2009/11/27/4886500.aspx
DBA1 群:62697716(滿); DBA2 群:62697977(滿)
DBA3 群:62697850 DBA 超級群:63306533;
聊天 群:40132017
--加群需要在備忘說明Oracle資料表空間和資料檔案的關係,否則拒絕申請