ORA-03113: end-of-file on communication channel 解決方法
場景
資料庫突然崩潰了,重啟會報ORA-03113錯誤,通過查詢發現是歸檔日誌滿了
解決
使用sqlplus /nolog
進入sql中
執行startup mount
檢視歸檔日誌使用率select * from v$flash_recovery_area_usage;
發現是歸檔日誌使用率太高了 ARCHIVED LOG使用率已經接近百分之百
解決思路:
1.擴大歸檔空間為4000Malter system set db_recovery_file_dest_size=4000M;
2.使用rman命令清理現在的歸檔日誌
另開一個視窗執行如下命令:
rman
是進入rman執行命令列
crosscheck archivelog all;
是檢查歸檔日誌
delete expired archivelog all;
是刪除所有過期歸檔日誌
delete archivelog all completed before 'sysdate - 3'
手動刪除不需要的歸檔日誌檔案 (刪除 3 天以前的日誌記錄)
rman
crosscheck archivelog all;
delete expired archivelog all;
相關文章
- Oracle startup報錯ORA-03113: end-of-file on communication channel 解決方案Oracle
- Oracle啟動報錯:ORA-03113: end-of-file on communication channelOracle
- ORA-03113: 通訊通道的檔案結束/ORA-03113: end-of-file on communication channel
- 啟動資料庫至open狀態報錯:ORA-03113: end-of-file on communication channel資料庫
- ORA-03113解決方法
- rman-03004 ora-03113 錯誤解決方法
- ORA-03113問題解決
- 【故障處理】ORA-3113 "end of file on communication channel"
- flume file channel 異常解決
- ORA-03113錯誤分析與解決
- [Oracle] ORA-03113錯誤分析與解決Oracle
- ORA-03113錯誤解決一例
- 10.2.0.3 升級到 10.2.0.4 database upgrade 報ORA-03113錯誤解決方法Database
- Golang通道Channel詳解Golang
- golang-channel詳解Golang
- ORA-03113 +0RA-07445 錯誤的痛苦解決過程
- ORA-03113 +0RA-07445 錯誤的痛苦解決過程
- Wireless Communication ProjectProject
- TabError的解決方法Error
- EXE病毒解決方法
- ArtifactDescriptorException的解決方法Exception
- 圖解Go的channel底層原理圖解Go
- Flutter系列之Platform Channel使用詳解FlutterPlatform
- SERVICE問題解決方法
- No Task Available解決方法AI
- No input file specified 解決方法
- ANR原因及解決方法
- pyenv BUILD FAILED解決方法UIAI
- defunct僵死程式解決方法
- putty亂碼解決方法
- hash衝突解決方法
- dns劫持怎麼解決 dns劫持的解決方法DNS
- go : channel , queue , 程式管理 , 關閉channel ?Go
- javaweb中中文亂碼解決方法總結之response和request解決方法JavaWeb
- error:slave communication error with ASMErrorASM
- Macromedia Flash Communication Server MXMacServer
- ERROR: slave communication error with ASMErrorASM
- 6 Java NIO Channel to Channel Transfers-翻譯Java