ORA-03113: end-of-file on communication channel 大批量数据插入导致闪回空间不足

连接Oracle时发现数据库宕掉了,sqlplus / as sysdba 连接启动发现启动有问题

ORA-03113: end-of-file on communication channel 大批量数据插入导致闪回空间不足

解决办法:

1.启动mount状态

sqlplus /nolog

connect / as sysdba

startup mount

2查看闪回去位置及大小

ORA-03113: end-of-file on communication channel 大批量数据插入导致闪回空间不足

3.查看当前使用状态

ORA-03113: end-of-file on communication channel 大批量数据插入导致闪回空间不足

4.Oracle用户下 进入归档模式

 rman target /

查看所有日志情况 list archivelog all;

检测归档日志   crosscheck archivelog all;

清理2天之前的所有日志 delete archivelog all completed before 'sysdate-2';

5.查看删除完毕之后的结果