现场反馈数据库数据库损坏了 ,协助恢复

alter日志


ORA-00333: redo log read error block string count string
Cause: An IO error occurred while reading the log described in the accompanying error.
Action: Restore accessibility to file, or get another copy of the file.
损坏为当前current ,检查其他数据文件正常,通过设置隐含参数强行拉库
*._allow_resetlogs_corruption=true
#*.undo_tablespace='UNDOTBS1'
*.undo_management='MANUAL'
*.rollback_segments='SYSTEM'


强制拉库导致未验证数据一致性,建议逻辑导出后重新导入新库
本文详细记录了一次Oracle数据库因日志文件损坏而引发的紧急恢复过程。面对current日志损坏的情况,通过设置隐含参数如_allow_resetlogs_corruption来强行启动数据库,并采取措施如设置undo_tablespace和undo_management等参数进行手动管理。然而,这种强制启动的方式可能导致数据一致性问题,因此建议采用逻辑导出后再导入新库的方法,以确保数据的完整性和准确性。
611

被折叠的 条评论
为什么被折叠?



