DBAsupport.com Forums - Powered by vBulletin
Results 1 to 5 of 5

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

  1. #1
    Join Date
    Jun 2000
    Location
    chennai,tamil nadu,india
    Posts
    159

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

    One of our vendor app is failing on the following statements:

    SQL> create or replace TYPE VEH_OBJ AS OBJECT ( VEH_MASTER_ID VARCHAR2(7) );
    2 /

    Type created.

    SQL> CREATE TYPE VEH_OBJ_VARRAY AS VARRAY (100) OF VEH_OBJ;
    2 /

    Type created.

    SQL> @tar.sql
    SQL> DECLARE
    2 v_varray VEH_OBJ_VARRAY ;
    3 BEGIN
    4 SELECT CAST(MULTISET(SELECT '78' FROM DUAL)
    5 AS VEH_OBJ_VARRAY )
    6 INTO V_Varray
    7 FROM dual ;
    8 END ;
    9 /
    DECLARE
    *
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel


    It failed on a 9.0.1.4 and 9.2.0.1 versions but worked on an 8.1.7.4 database.

    Any idea???

  2. #2
    Join Date
    Aug 2002
    Location
    Colorado Springs
    Posts
    5,253

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

    Originally posted by msuresh
    Any idea???
    search the forum for "end-of-file on communication channel"
    David Aldridge,
    "The Oracle Sponge"

    Senior Manager, Business Intelligence Development
    XM Satellite Radio
    Washington, DC

    Oracle ACE

  3. #3
    Join Date
    Jan 2004
    Posts
    1
    What O/S are you running the database on?

  4. #4
    Join Date
    Aug 2002
    Location
    Atlanta
    Posts
    1,187
    could be bug 2360357

    can you drop the type and then create it?

    check bdump/udump for any ora 600's?
    I'm stmontgo and I approve of this message

  5. #5
    Join Date
    Apr 2003
    Posts
    353
    Network disconnection is the comman cause.
    Check the listener service in the server.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width