ORA-00313 open failed for members of log group解決辦法
ORA-00313 open failed for members of log group解決辦法
經驗總結:
聯機日誌分為當前聯機日誌和非當前聯機日誌,非當前聯機日誌的損壞是比較簡單的,一般透過clear命令就可以解決問題。
損壞非當前聯機日誌:
1、啟動資料庫,遇到ORA-00312 or ORA-00313錯誤,如:
ORA-00313: open failed for members of log group 1 of thread 1
ORA-00312: online log 3 thread 1: '/opt/oracle/db04/oradata/ORCL/redo01.log'
從這裡我們知道日誌組1的資料檔案損壞或丟失了
從報警檔案可以看到更詳細的資訊
2、檢視V$log檢視:
SQL> select group#,sequence#,archived,status from v$log;
GROUP# SEQUENCE# ARC STATUS
---------- ---------- --- ----------------
1 54 YES INACTIVE
2 55 NO CURRENT
3 53 YES INACTIVE
可以知道,該組是非當前狀態,而且已經歸檔。
3、用CLEAR命令重建該日誌檔案
SQL>alter database clear logfile group 3;
如果是該日誌組還沒有歸檔,則需要用
SQL>alter database clear unarchived logfile group 3;
4、開啟資料庫,重新備份資料庫
SQL>alter database open;
說明:
1)、如果損壞的是非當前的聯機日誌檔案,一般只需要clear就可以重建該日誌檔案,但是如果該資料庫處於歸檔狀態但該日誌還沒有歸檔,就
需要強行clear.
2)、建議clear,特別是強行clear後作一次資料庫的全備份。
3)、此方法適用於歸檔與非歸檔資料庫。
損壞當前聯機日誌:
歸檔模式下當前日誌的損壞有兩種情況,
一、是資料庫是正常關閉,日誌檔案中沒有未決的事務需要例項恢復,當前日誌組的損壞就可以直接用alter database clear unarchived
logfile group n來重建。
二、是日誌組中有活動的事務,資料庫需要媒體恢復,日誌組需要用來同步,有兩種補救辦法
A. 最好的辦法就是透過不完全恢復,可以保證資料庫的一致性,但是這種辦法要求在歸檔方式下,並且有可用的備份
B. 透過強制性恢復,但是可能導致資料庫不一致。
下面分別用來說明這兩種恢復方法
5.1.2.1 透過備份來恢復
1、開啟資料庫,會遇到一個類似的錯誤
ORA-00313: open failed for members of log group 1 of thread 1
ORA-00312: online log 1 thread 1: 'D:ORACLEORADATATESTREDO01.LOG'
ORA-27041: unable to open file
OSD-04002: unable to open file
O/S-Error: (OS 2) 系統找不到指定的檔案
2、檢視V$log,發現是當前日誌
SQL> select group#,sequence#,archived,status from v$log;
GROUP# SEQUENCE# ARCHIVED STATUS
---------- ---------- -------- ----------------
1 1 NO CURRENT
2 2
YES INACTIVE
3 3 YES INACTIVE
3、發現clear不成功
SQL> alter database clear unarchived logfile group 1;
alter database clear unarchived logfile group 1
*
ERROR at line 1:
ORA-01624: log 1 needed for crash recovery of thread 1
ORA-00312: online log 1 thread 1: 'D:ORACLEORADATATESTREDO01.LOG'
4、複製有效的資料庫的全備份,並不完全恢復資料庫
可以採用獲取最近的SCN的辦法用until scn恢復或用until cnacel恢復
recover database until cancel
先選擇auto,儘量恢復可以利用的歸檔日誌,然後重新
recover database until cancel
這次輸入cancel,完成不完全恢復,也就是說恢復兩次。
如:
SQL> recover database until cancel;
Auto
……
SQL> recover database until cancel;
Cancel;
5、利用alter database open resetlogs開啟資料庫
說明:
1、這種辦法恢復的資料庫是一致的不完全恢復,會丟失當前聯機日誌中的事務資料
2、這種方法適合於歸檔資料庫並且有可用的資料庫全備份。
3、恢復成功之後,記得再做一次資料庫的全備份。
4、建議聯機日誌檔案一定要實現鏡相在不同的磁碟上,避免這種情況的發生,因為任何資料的丟失對於生產來說都是不容許的。
如果沒有備份,進行強制性恢復
1、開啟資料庫,會遇到一個類似的錯誤
ORA-00313: open failed for members of log group 1 of thread 1
ORA-00312: online log 1 thread 1: 'D:ORACLEORADATATESTREDO01.LOG'
ORA-27041: unable to open file
OSD-04002: unable to open file
O/S-Error: (OS 2) 系統找不到指定的檔案
2、檢視V$log,發現是當前日誌
SQL> select group#,sequence#,archived,status from v$log;
GROUP# SEQUENCE# ARCHIVED STATUS
---------- ---------- -------- ----------------
1 1 NO CURRENT
2 2 YES INACTIVE
3 3 YES INACTIVE
3、發現clear不成功
SQL> alter database clear unarchived logfile group 1;
alter database clear unarchived logfile group 1
*
ERROR at line 1:
ORA-01624: log 1 needed for crash recovery of thread 1
ORA-00312: online log 1 thread 1: 'D:ORACLEORADATATESTREDO01.LOG'
4、把資料庫down掉
SQL>shutdown immediate
5、在init.ora中加入如下引數
_allow_resetlogs_corruption=TRUE
6、重新啟動資料庫,利用until cancel恢復
SQL>recover database until cancel;
Cancel
如果出錯,不再理會,發出
SQL>alter database open resetlogs;
7、資料庫被開啟後,馬上執行一個full export
8、shutdown資料庫,去掉_all_resetlogs_corrupt引數
9、重建庫
10、import並完成恢復
11、建議執行一下ANALYZE TABLE ...VALIDATE STRUCTURE CASCADE;
說明:
1、該恢復方法是沒有辦法之後的恢復方法,一般情況下建議不要採用,因為該方法可能導致資料庫的不一致
2、該方法也丟失資料,但是丟失的資料沒有上一種方法的資料多,主要是未寫入資料檔案的已提交或未提交資料。
3、建議成功後嚴格執行以上的7到11步,完成資料庫的檢查與分析
4、全部完成後做一次資料庫的全備份
5、建議聯機日誌檔案一定要實現鏡相在不同的磁碟上,避免這種情況的發生,因為任何資料的丟失對於生產來說都是不容許的。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28211342/viewspace-2146752/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [ERROR] Failed to open logErrorAI
- Failed to install *.apk on device null解決辦法AIAPKdevNull
- 執行 xhost + 出現 unable to open display 解決辦法
- Android Gradle Build Error:Some file crunching failed, see logs for details解決辦法AndroidGradleUIErrorAI
- VMware 啟動報錯 "Failed to lock the file"解決辦法AI
- 解決 yum clean all Error rpmdb open failedErrorAI
- FileZilla:425 Can't open data connection for transfer of解決辦法
- IDEA提示failed to load JVM DLL的解決辦法IdeaAIJVM
- RuntimeError: cuDNN error: CUDNN_STATUS_EXECUTION_FAILED解決辦法ErrorDNNAI
- “Validation failed for one or more entities”異常的解決辦法AI
- VS 2017 Git failed with a fatal error的解決辦法GitAIError
- 刪除mysql relay-log 的解決辦法MySql
- vscode中Git: host key verification failed的解決辦法VSCodeGitAI
- SVN報錯“Failed to run the WC DB work queue associated with”解決辦法AI
- Navicat tnt版本提示“failed to save password error code”的解決辦法AIError
- docker dm_task_run failed 啟動失敗解決辦法DockerAI
- [nodemon] Internal watch failed: watch ENOSPC錯誤解決辦法AI
- MySQL5.7 group by新特性報錯1055的解決辦法MySql
- PyCharm啟動報錯:Failed to create JVM.解決辦法之一PyCharmAIJVM
- Cargo invocation has failed: Error: exit code: 101.解決辦法CargoAIError
- Failed to upgrade Oracle Cluster Registry configuration的解決辦法AIOracle
- command 'gcc' failed with exit status 1錯誤問題的解決辦法GCAI
- DBLOGIN ERROR: Failed to open data source for user OGG.ErrorAI
- 忘記weblogic控制檯密碼解決辦法 轉Web密碼
- mysql 目錄遷移導致無法找到relay log 解決辦法。MySql
- org.hibernate.exception.JDBCConnectionException: Cannot open connection 解決辦法ExceptionJDBC
- log4j:WARN Please initialize the log4j system properly解決辦法
- 解決WebLogic中Too many open files異常Web
- ORA-01012: not logged on 解決辦法
- npm報錯"A complete log of this run can be found in:"的解決辦法NPM
- github慢解決辦法Github
- Grub Rescue解決辦法
- /dev/null解決辦法devNull
- MSBuild Tools解決辦法UI
- linux操作提示:“Can't open file for writing”或“operation not permitted”的解決辦法LinuxMIT
- Open Group開源CDE
- org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection 解決辦法SpringFrameworkJDBCOTGExceptionAI
- Laravel 安裝 sail時ubuntu軟體源很慢或者connection failed 解決辦法LaravelAIUbuntu