zoukankan      html  css  js  c++  java
  • [ORACLE]ORA-03113: end-of-file on communication channel

    数据库启动失败 ORA-03113: end-of-file on communication channel

    SQL> startup
    ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
    ORACLE instance started.
    
    Total System Global Area 4294964360 bytes
    Fixed Size            9143432 bytes
    Variable Size         2231369728 bytes
    Database Buffers      973078528 bytes
    Redo Buffers            7630848 bytes
    In-Memory Area         1073741824 bytes
    Database mounted.
    ORA-03113: end-of-file on communication channel
    Process ID: 4945
    Session ID: 2 Serial number: 54140

    查询FLASH back 使用情况

    原来是大批量的数据插入导致闪回空间不足, 最常用的办法删除不需要的归档日志文件或者增加闪回空间大小(db_recovery_file_dest_size)

    SQL> startup mount
    ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
    ORACLE instance started.
    
    Total System Global Area 4294964360 bytes
    Fixed Size            9143432 bytes
    Variable Size         2231369728 bytes
    Database Buffers      973078528 bytes
    Redo Buffers            7630848 bytes
    In-Memory Area         1073741824 bytes
    Database mounted.
    SQL> col name for A50
    SQL> select name,(space_used/1024/1024),(space_limit/1024/1024) from v$recovery_file_dest;
    
    NAME                           (SPACE_USED/1024/1024) (SPACE_LIMIT/1024/1024)
    -------------------------------------------------- ---------------------- -----------------------
    /oracle/D4C/recovery_area                       12662.4673             3000

    增加闪回空间

    SQL> alter system set db_recovery_file_dest_size=20000M;
    
    System altered.
    
    SQL> select name,(space_used/1024/1024),(space_limit/1024/1024) from v$recovery_file_dest;
    
    NAME                           (SPACE_USED/1024/1024) (SPACE_LIMIT/1024/1024)
    -------------------------------------------------- ---------------------- -----------------------
    /oracle/D4C/recovery_area                       13036.3516            20000

    重新启动

    SQL> shutdown immediate
    ORA-01109: database not open
    
    
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup
    ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
    ORACLE instance started.
    
    Total System Global Area 4294964360 bytes
    Fixed Size            9143432 bytes
    Variable Size         2231369728 bytes
    Database Buffers      973078528 bytes
    Redo Buffers            7630848 bytes
    In-Memory Area         1073741824 bytes
    Database mounted.
    Database opened.
  • 相关阅读:
    性能学习总结
    xpath的不稳定性
    jenkins 打包时,提示字符不可映射字符
    jenkins 远程部署失败 控制台部署成功
    QTP ExecuteFile应用外部脚本时报“无效字符”错误_Ealge_新浪博客
    Tips:getroproperty调试可以通过,但是运行不可以
    在mac上搭建octopress+github pages博客
    SDWebImage源码分析
    提高XCode编译速度
    iOS app调试
  • 原文地址:https://www.cnblogs.com/tingxin/p/12782926.html
Copyright © 2011-2022 走看看