文档解释
ORA-00345: redo log write error block string count string
Cause: An IO error has occurred while writing the log
Action: Correct the cause of the error, and then restart the system. If the log is lost, apply media/incomplete recovery.
ORA-00345 是Oracle数据库Redo日志系统出现磁盘写入错误及相应异常处理过程中出现的错误。
官方解释
ORA-00345: redo log write error block string count string
Cause: The Redo Log Writer encountered an error while writing a log buffer.
Action: Check the accompanying messages and take appropriate action.
常见案例
这个错误一般由上文提到的磁盘写入错误,比如磁盘空间不足,磁盘结构损坏等引起。
正常处理方法及步骤
1.查看相关日志获取更多信息,查看日志文件在目录:DIAGNOSTIC_DEST/diag/rdbms/DB_name/instance_name/trace。
2.检查当前的磁盘空间情况,相关的Redo日志文件组是否有空间可以继续写入。
3.尝试添加更多的磁盘空间试试。
4.重新激活数据库并尝试正常访问,如果不能恢复可以尝试restore和recovery。