Home » Oracle » Oracle Database » ORA-03113: end-of-file on communication channel

ORA-03113: end-of-file on communication channel

ORA-03113 is quite a common error. Let us take a deep dive into it

Issue ORA-03113: end-of-file on communication channel
Cause: The connection between the Client and Server process was broken. It may also happen if the external agent extproc crashes for some reason.
Action: There was a communication error that requires further investigation. First, check for network problems and review the SQL*Net setup. Also, look in the alert.log file for any errors. Finally, test to see whether the server process is dead and whether a trace file was generated at failure time. There may be some system calls in the .NET function which might terminate the process. Remove such calls.

Cause of ORA-03113

An ORA-3113 “end of file on communication channel” error is a general error usually reported by a client process connected to an Oracle database. The error basically means ‘I cannot communicate with the Oracle shadow process. For some reason, your client machine and the database server have stopped talking to each other. As it is such a general error more information must be collected to help determine what has happened – this error by itself does not indicate the cause of the problem.

For example, ORA-3113 could be signalled for any of the following scenarios:
•Server machine crashed
•Your server process was killed at the O/S level
•Network problems
•Oracle internal errors (ORA-600 / ORA-7445) / aborts on the server
•Client incorrectly handling multiple connections
• etc.. etc.. etc.. – a lot of possible causes !!
It is common for this error to be accompanied by other errors such as:
• ORA-01041 internal error. host def extension doesn’t exist
•ORA-03114 not connected to ORACLE
• ORA-01012 not logged on

See also  Local Undo in Oracle Database 12c R2(12.2)

This error is sometimes caused by the simplest of things. If, however, it is caused by an Oracle internal error, look to your alert log for further information.

Checklist for resolving the ORA-3113

(1) ORA-3113 during startup of Oracle database

It can occur in all the stages of the startup of the Oracle database

ORA-03113: end-of-file on communication channel

(2) Client sees ORA-3113 running SQL / PLSQL

If the ORA-3113 error occurs AFTER you have connected to Oracle then, it is most likely that the ‘oracle’ executable has terminated unexpectedly. The server process could have died for many reasons.

(a) System Administrator killed the process deliberately by killing the process id as it may be consuming more CPU and memory


(b) It could happen because of some bug, We should look for the trace file for this session in the diagnostics directory and check for the solution in Metalink

(c) For UNIX only: If there is no trace file, check for a ‘core’ dump in the CORE_DUMP_DEST. Check as follows:

cd $ORACLE_HOME/dbs # Or your CORE_DUMP_DEST
ls -l core*

If there is a file called ‘core’ check that its time matches the time of the problem. If there are directories called ‘core_<PID>’, check for core files in each of these. It is  IMPORTANT to get the correct core file. Now obtain a stack trace from this ‘core’ file. Check each of the sequences below to see how to do this – one of these should work for your platform.

If you have dbx:

% script /tmp/core.stack
% dbx $ORACLE_HOME/bin/oracle core
(dbx) where
…
(dbx) quit
% exit

If you have sdb:

% script /tmp/core.stack
% sdb $ORACLE_HOME/bin/oracle core
t
…
q
% exit

If you have xdb:

% script /tmp/core.s

(d) It may be possible a  particular SQL statement or PL/SQL block is causing the error. In many cases this will be listed in the trace file produced under the heading “Current SQL statement”, or near the middle of the trace file under the cursor referred to by the “Current cursor NN” line.

See also  How to check encrypted tablespace in the Database

If the trace file does not show the failing statement then SQL_TRACE may be used to help determine this, provided the problem reproduces. SQL_TRACE can be enabled in most client tools

We should always refer to  the master Metalink note  on ORA-03113
Master Note: Troubleshooting ORA-03113 (Doc ID 1506805.1)

Also Reads
ORA-01111
ORA-00900
ora-29283: invalid file operation

1 thought on “ORA-03113: end-of-file on communication channel”

  1. SQL> startup pfile=/u01/app/oracle/product/12.2.0/db_home/dbs/initDEV2.ora
    ORACLE instance started.

    Total System Global Area 1073741824 bytes
    Fixed Size 8628936 bytes
    Variable Size 373294392 bytes
    Database Buffers 683671552 bytes
    Redo Buffers 8146944 bytes
    Database mounted.
    ORA-03113: end-of-file on communication channel
    Process ID: 23891
    Session ID: 240 Serial number: 30336

    *****************************************
    solution: proper copy of redolof or dbf from source to target.
    [oracle@test1 DEV2]$ scp redo01.log redo02.log redo03.log [email protected]:/u01/app/oracle/oradata/DEV2

    scp sysaux01.dbf system01.dbf temp01.dbf undotbs01.dbf users01.dbf [email protected]:/u01/app/oracle/oradata/DEV2

    Then startup with pfile

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top