Package compile faile with error ORA-03113: end-of-file on communication..

Hi There,
We're trying to compile a package and we're getting this error that we're not sure how to debug and/or tackle. Your assistance is highly appreciated.
create or replace
ERROR at line 1:
ORA-03113: end-of-file on communication channel
Process ID: 4252
Session ID: 1149 Serial number: 5910
The package use to compile without any issues; also we have it working in other environments. We can't see any differences at this stage.
Oracle Version:11.2.0.1 x64
OS: Windows 2008 Server R2
Thanks in advance for your help.
Thanks

I have tried dropping the package and re-compiling it but to no avail. I can compile other packages/procedures/functions without any issues.
Also, trying to run either EXEC UTL_RECOMP.recomp_parallel(4, 'SCHEMA_NAME'); or @?/rdbms/admin/UTLRP.SQL gives the following erros:
ERROR at line 1:
ORA-03113: end-of-file on communication channel
Process ID: 7040
Session ID: 388 Serial number: 9039
ERROR:
ORA-03114: not connected to ORACLE
DOC> The following query reports the number of objects that have compiled
DOC> with errors (objects that compile with errors have status set to 3 in
DOC> obj$). If the number is higher than expected, please examine the error
DOC> messages reported with each object (using SHOW ERRORS) to see if they
DOC> point to system misconfiguration or resource constraints that must be
DOC> fixed before attempting to recompile these objects.
DOC>#
ERROR:
ORA-03114: not connected to ORACLE
DOC> The following query reports the number of errors caught during
DOC> recompilation. If this number is non-zero, please query the error
DOC> messages in the table UTL_RECOMP_ERRORS to see if any of these errors
DOC> are due to misconfiguration or resource constraints that must be
DOC> fixed before objects can compile successfully.
DOC>#
ERROR:
ORA-03114: not connected to ORACLE
ERROR:
ORA-03114: not connected to ORACLE
ERROR:
ORA-03114: not connected to ORACLE
ERROR:
ORA-03114: not connected to ORACLE
ERROR:
ORA-03114: not connected to ORACLE

Similar Messages

  • Getting error "ORA-03113: end-of-file on communication channel"

    HI ,
    When Iam trying to compile a procedure in SQL *PLUS ,iam getting the following error :
    ORA-03113: end-of-file on communication channel and the connection is getting lost .There is no issue with the code .
    When i compile the same procedure in sql developer ,connection is getting lost and getting error
    "Connection Closed
    Vendor Code 17008"
    Please help me to resolve the issue .
    Thanks in advance ...

    Hi
    Here is the code which is not getting compiled and is giving the above said error
    CREATE OR REPLACE PROCEDURE SP_Upload_CrossWalk
    (src_dom_nm IN VARCHAR2, src_sys_nm IN VARCHAR2, src_dta_elem_nm IN VARCHAR2, src_cd_val_txt IN VARCHAR2,
    src_cd_val_desc IN VARCHAR2,src_cd_val_grp_desc IN VARCHAR2, tgt_dom_nm IN VARCHAR2, tgt_sys_nm IN VARCHAR2,
    tgt_dta_elem_nm IN VARCHAR2, tgt_cd_val_txt IN VARCHAR2, tgt_cd_val_desc IN VARCHAR2,cd_map_typ_desc IN VARCHAR2,
    eff_dttm IN VARCHAR2, term_dttm IN VARCHAR2, errtext OUT VARCHAR2)
    IS
    src_dom NUMBER;
    src_key NUMBER;
    src_elem NUMBER;
    tgt_dom NUMBER;
    tgt_sys NUMBER;
    tgt_elem NUMBER;
    src_val_seq NUMBER;
    tgt_val_seq NUMBER;
    src_cd_val_seq NUMBER;
    cd_val_map_key_sq NUMBER;
    temp_var VARCHAR2(500);
    var_len NUMBER;
    map_code CHAR(1);
    invalidlength_exception EXCEPTION;
    unknown_exception Exception;
    BEGIN
         var_len := LENGTH(src_cd_val_txt);
         IF var_len > 20 THEN
         temp_var := 'Length of Source Code Value Text Name is more than 20 characters';
         RAISE invalidlength_exception;
         END IF;
         var_len := LENGTH(src_cd_val_desc);
         IF var_len > 255 THEN
         temp_var := 'Length of Code Value Desc is more than 255 characters';
         RAISE invalidlength_exception;
         END IF;
         var_len := LENGTH(tgt_cd_val_txt);
         IF var_len > 20 THEN
         temp_var := 'Length of Target Code Value Text Name is more than 20 characters';
         RAISE invalidlength_exception;
         END IF;
         var_len := LENGTH(tgt_cd_val_desc);
         IF var_len > 255 THEN
         temp_var := 'Length of Target Code Value Desc is more than 255 characters';
         RAISE invalidlength_exception;
         END IF;
         var_len := LENGTH(src_cd_val_grp_desc);
         IF var_len > 255 THEN
         temp_var := 'Length of Code Value Group Desc is more than 255 characters';
         RAISE invalidlength_exception;
         END IF;
         BEGIN
              SELECT dom_key INTO src_dom FROM cu_cdm_dom WHERE dom_nm = src_dom_nm;
              EXCEPTION
              WHEN TOO_MANY_ROWS THEN
                   temp_var := 'Too many rows for Domain Key value lookup for Source Domain Name: '||src_dom_nm;
                   RAISE TOO_MANY_ROWS;
              WHEN NO_DATA_FOUND THEN
                   temp_var := 'Domain Key value lookup failed for Source Domain Name: '||src_dom_nm;
                   RAISE NO_DATA_FOUND;
              WHEN OTHERS THEN
                   temp_var := 'Unknown error in the Domain Key value lookup for Source Domain Name: '||src_dom_nm||' :
    '|| sqlerrm;
                   RAISE unknown_exception;
         END;
         BEGIN
              SELECT sys_key INTO src_key FROM cu_cdm_sys WHERE sys_nm = src_sys_nm;
              EXCEPTION
              WHEN TOO_MANY_ROWS THEN
                   temp_var := 'Too many rows for System Key value lookup for Source System Name: '||src_sys_nm;
                   RAISE TOO_MANY_ROWS;           
              WHEN NO_DATA_FOUND THEN
                   temp_var := 'System Key value lookup failed for Source System Name: '||src_sys_nm;
                   RAISE NO_DATA_FOUND;
              WHEN OTHERS THEN
                   temp_var := 'Unknown error in the System Key value lookup for Source System Name: '||src_sys_nm||' :
    '|| sqlerrm;
                   RAISE unknown_exception;
         END;
         BEGIN
              SELECT dta_elem_key INTO src_elem FROM cu_cdm_dta_elem WHERE dta_elem_phys_nm = src_dta_elem_nm
              AND dom_key = src_dom AND sys_key = src_key;
              EXCEPTION
              WHEN TOO_MANY_ROWS THEN
                   temp_var := 'Too many rows for Data Element Key value lookup for Source Data Element Physical Name:
    '||src_dta_elem_nm|| ', Source Domain Key: '||src_dom||' and Source System Key: '||src_key;
                   RAISE TOO_MANY_ROWS;           
              WHEN NO_DATA_FOUND THEN
                   temp_var := 'Data Element Key value lookup failed for Source Data Element Physical Name:
    '||src_dta_elem_nm|| ', Source Domain Key: '||src_dom||' and Source System Key: '||src_key;
                   RAISE NO_DATA_FOUND;
              WHEN OTHERS THEN
                   temp_var := 'Unknown error in the Data Element Key value lookup for Source Data Element Physical
    Name: '||src_dta_elem_nm|| ', Source Domain Key: '||src_dom||' and Source System Key: '||src_key||' : '|| sqlerrm;
                   RAISE unknown_exception;
         END;
         BEGIN
              SELECT dom_key INTO tgt_dom FROM cu_cdm_dom WHERE dom_nm = tgt_dom_nm;
              EXCEPTION
              WHEN TOO_MANY_ROWS THEN
                   temp_var := 'Too many rows for Domain Key value lookup for Target Domain Name: '||tgt_dom_nm;
                   RAISE TOO_MANY_ROWS;           
              WHEN NO_DATA_FOUND THEN
                   temp_var := 'Domain Key value lookup failed for Target Domain Name: '||tgt_dom_nm;
                   RAISE NO_DATA_FOUND;
              WHEN OTHERS THEN
                   temp_var := 'Unknown error in the Domain Key value lookup for Target Domain Name: '||tgt_dom_nm||' :
    '|| sqlerrm;
                   RAISE unknown_exception;
         END;
         BEGIN
              SELECT sys_key INTO tgt_sys FROM cu_cdm_sys WHERE sys_nm = tgt_sys_nm;
              EXCEPTION
              WHEN TOO_MANY_ROWS THEN
                   temp_var := 'Too may rows for System Key value lookup for Target System Name: '||tgt_sys_nm;
                   RAISE TOO_MANY_ROWS;           
              WHEN NO_DATA_FOUND THEN
                   temp_var := 'System Key value lookup failed for Target System Name: '||tgt_sys_nm;
                   RAISE NO_DATA_FOUND;
              WHEN OTHERS THEN
                   temp_var := 'Unknown error in the System Key value lookup for Target System Name: '||tgt_sys_nm||' :
    '|| sqlerrm;
                   RAISE unknown_exception;
         END;
         BEGIN
              SELECT dta_elem_key INTO tgt_elem FROM cu_cdm_dta_elem WHERE dta_elem_phys_nm = tgt_dta_elem_nm
              AND dom_key = tgt_dom AND sys_key = tgt_sys;
              EXCEPTION
              WHEN TOO_MANY_ROWS THEN
                   temp_var := 'Too many rows for Data Element Key value lookup for Target Data Element Physical Name:
    '||tgt_dta_elem_nm|| ', Target Domain Key: '||tgt_dom||' and Target System Key: '||tgt_sys;
                   RAISE TOO_MANY_ROWS;           
              WHEN NO_DATA_FOUND THEN
                   temp_var := 'Data Element Key value lookup failed for Target Data Element Physical Name:
    '||tgt_dta_elem_nm|| ', Target Domain Key: '||tgt_dom||' and Target System Key: '||tgt_sys;
                   RAISE NO_DATA_FOUND;
              WHEN OTHERS THEN
                   temp_var := 'Unknown error in the Data Element Key value lookup for Target Data Element Physical
    Name: '||tgt_dta_elem_nm|| ', Target Domain Key: '||tgt_dom||' and Target System Key: '||tgt_sys||' : '|| sqlerrm;
                   RAISE unknown_exception;
         END;
         BEGIN
              SELECT MIN(cd_map_typ_cd) INTO map_code FROM cu_cdm_cd_map_typ WHERE cd_map_typ_desc = cd_map_typ_desc;
              EXCEPTION
              WHEN TOO_MANY_ROWS THEN
                   temp_var := 'Too many values for Code Map Type Code value lookup for Code Map Type Desc:
    '||cd_map_typ_desc;
                   RAISE TOO_MANY_ROWS;           
              WHEN NO_DATA_FOUND THEN
                   temp_var := 'Code Map Type Code value lookup failed for Code Map Type Desc: '||cd_map_typ_desc;
                   RAISE NO_DATA_FOUND;
              WHEN OTHERS THEN
                   temp_var := 'Unknown error in the Code Map Type Code value lookup for Code Map Type Desc:
    '||cd_map_typ_desc||' : '|| sqlerrm;
                   RAISE unknown_exception;
         END;     
         BEGIN
              SELECT cu_cdm_src_cd_val_grp_key_sq.nextval INTO src_cd_val_seq FROM dual;
              EXCEPTION
              WHEN OTHERS THEN
                   temp_var := 'Error in generating the value for the sequence CU_CDM_SRC_CD_VAL_GRP_KEY_SQ'||' : '||
    sqlerrm;
                   RAISE unknown_exception;
         END;      
         BEGIN
              SELECT cu_cdm_cd_val_key_sq.nextval INTO src_val_seq FROM dual;
              EXCEPTION
              WHEN OTHERS THEN
                   temp_var := 'Error in generating the value (source) for the sequence CU_CDM_CD_VAL_KEY_SQ'||' : '||
    sqlerrm;
                   RAISE unknown_exception;
         END;
         BEGIN
              SELECT cu_cdm_cd_val_key_sq.nextval INTO tgt_val_seq FROM dual;
              EXCEPTION
              WHEN OTHERS THEN
                   temp_var := 'Error in generating the value (target) for the sequence CU_CDM_CD_VAL_KEY_SQ'||' : '||
    sqlerrm;
                   RAISE unknown_exception;
         END;
         BEGIN
              SELECT cu_cdm_cd_val_map_key_sq.nextval INTO cd_val_map_key_sq FROM dual;
              EXCEPTION
              WHEN OTHERS THEN
                   temp_var := 'Error in generating the value for the sequence CU_CDM_CD_VAL_MAP_KEY_SQ'||' : '||
    sqlerrm;
                   RAISE unknown_exception;
         END;
         BEGIN
              BEGIN
                   INSERT INTO cu_cdm_cd_val_mstr(cd_val_key, cd_val_eff_dttm, dta_elem_key, cd_val_txt,
    cd_val_desc, coode_val_term_dttm)
                   VALUES(src_val_seq, to_date(eff_dttm, 'MM-DD-YYYY'), src_elem, src_cd_val_txt,
    src_cd_val_desc, to_date(term_dttm, 'MM-DD-YYYY'));
                   EXCEPTION
                   WHEN DUP_VAL_ON_INDEX THEN
                        temp_var := 'Primary Key Violation, key already exists in the table CU_CDM_CD_VAL_MSTR';
                        RAISE DUP_VAL_ON_INDEX;
                   WHEN OTHERS THEN
                        temp_var := 'Unknown error inserting into the table CU_CDM_CD_VAL_MSTR :'||' : '|| sqlerrm;
                        RAISE unknown_exception;
              END;
              BEGIN
                   INSERT INTO cu_cdm_cd_val_mstr(cd_val_key, cd_val_eff_dttm, dta_elem_key, cd_val_txt,
    cd_val_desc, coode_val_term_dttm)
                   VALUES(tgt_val_seq, to_date(eff_dttm, 'MM-DD-YYYY'), tgt_elem, tgt_cd_val_txt,
    tgt_cd_val_desc, to_date(term_dttm, 'MM-DD-YYYY'));
                   EXCEPTION
                   WHEN DUP_VAL_ON_INDEX THEN
                        temp_var := 'Primary Key Violation, key already exists in the table CU_CDM_CD_VAL_MSTR';
                        RAISE DUP_VAL_ON_INDEX;
                   WHEN OTHERS THEN
                        temp_var := 'UUnknown error inserting into the table CU_CDM_CD_VAL_MSTR'||' : '|| sqlerrm;
                        RAISE unknown_exception;
              END;
              BEGIN
                   INSERT INTO cu_cdm_src_cd_val_grp(src_cd_val_grp_key, src_cd_val_grp_eff_dttm,
    src_cd_val_grp_desc, src_cd_val_term_dttm)
                   VALUES(src_cd_val_seq, to_date(eff_dttm, 'MM-DD-YYYY'), src_cd_val_grp_desc,
    to_date(term_dttm, 'MM-DD-YYYY'));
                   EXCEPTION
                   WHEN DUP_VAL_ON_INDEX THEN
                        temp_var := 'Primary Key Violation, key already exists in the table CU_CDM_SRC_CD_VAL_GRP';
                        RAISE DUP_VAL_ON_INDEX;
                   WHEN OTHERS THEN
                        temp_var := 'Unknown error inserting into the table CU_CDM_SRC_CD_VAL_GRP'||' : '|| sqlerrm;
                        RAISE unknown_exception;
              END;
              BEGIN
                   INSERT INTO cu_cdm_cd_val_map(cd_val_map_key, cd_map_eff_dttm, cd_map_typ_cd,
    cd_map_term_dttm, tgt_cd_val_key, tgt_cd_val_eff_dttm, src_cd_val_grp_key, src_cd_val_grp_eff_dttm)
                   VALUES(cd_val_map_key_sq, to_date(eff_dttm, 'MM-DD-YYYY'), map_code, to_date(term_dttm,
    'MM-DD-YYYY'),
                   tgt_val_seq, to_date(eff_dttm, 'MM-DD-YYYY'), src_cd_val_seq, to_date(eff_dttm,
    'MM-DD-YYYY'));
                   EXCEPTION
                   WHEN DUP_VAL_ON_INDEX THEN
                        temp_var := 'Primary Key Violation, key already exists in the table CU_CDM_CD_VAL_MAP';
                        RAISE DUP_VAL_ON_INDEX;
                   WHEN OTHERS THEN
                        temp_var := 'Unknown error inserting into the table CU_CDM_CD_VAL_MAP'||' : '|| sqlerrm;
                        RAISE unknown_exception;
              END;
    END;
         COMMIT;
    EXCEPTION
              WHEN NO_DATA_FOUND THEN
              errtext := temp_var ||' : '|| sqlerrm;
              WHEN TOO_MANY_ROWS THEN
         errtext := temp_var ||' : '|| sqlerrm;
              WHEN DUP_VAL_ON_INDEX THEN
              errtext := temp_var ||' : '|| sqlerrm;
              WHEN invalidlength_exception THEN
              errtext := temp_var;
    WHEN unknown_exception THEN
    errtext := temp_var ||' : '|| sqlerrm;     
              WHEN OTHERS THEN
              errtext := sqlcode ||' : '|| sqlerrm;
    END SP_Upload_CrossWalk;
    Please help me in this regard
    Regards
    Deepak

  • Error ORA-03113: end-of-file on communication channel in droppping  a table

    Good evening,
    I am very new on Oracle and I have a problem with some tables. Without any reason, apparently, I can't drop some of my table. Oracle gives me this error:
    ORA-03113: end-of-file on communication channel
    and then close the connection of the user.
    What I should have to do?
    It is very important.
    Thanks a lot
    best regards
    Anna Zanetti

    Good morning, I still have the same problem, I can't drop a table from my database.
    The message is again:
    Re: Error ORA-03113: end-of-file on communication channel
    The alert log file says:
    Fri Nov 17 12:27:31 2006
    Errors in file /usr/oracle/admin/oracledb/udump/oracledb_ora_4369.trc:
    ORA-07445: exception encountered: core dump [0955C61F] [SIGSEGV] [Address not mapped to object] [0xC] [] []
    and in file oracledb_ora_4369.trc there is:
    Exception signal: 11 (SIGSEGV), code: 1 (Address not mapped to object), addr: 0xc, PC: [0x955c61f, 0955C61F]
    Registers:
    %eax: 0x00000000 %ebx: 0x00012d95 %ecx: 0x58301930
    %edx: 0x00000000 %edi: 0x5830d9e8 %esi: 0x00000000
    %esp: 0xbfffae1c %ebp: 0xbfffb060 %eip: 0x0955c61f
    %efl: 0x00210282
    (0x955c61f) movzw 0xc(%eax),%eax(0x955c623) cmp $30,%eax
    (0x955c626) jle 0x955c63e
    (0x955c628) xor %edx,%edx
    (0x955c62a) push %edx
    *** 2006-11-17 12:27:31.658
    ksedmp: internal or fatal error
    ORA-07445: exception encountered: core dump [0955C61F] [SIGSEGV] [Address not mapped to object] [0xC] [] []
    Current SQL statement for this session:
    drop table fiumiforjoin
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    08856247 call 0885776A 1 ? 0 ? 1 ? 1 ? 0 ? 0 ?
    08290320 call 0885605A 3 ? 0 ? 0 ? 0 ? 0 ? 0 ?
    0955C61F signal 08290320 B ? BFFFAAB0 ? BFFFAB30 ?
    0955D6BE call 0955C61F 5830F01C ? 0 ? FFFFFFFF ? 0 ?
    1 ? 5830F01C ?
    08DD1EEB call 0955CC22 BFFFB394 ? 0 ? 0 ? BFFFB348 ?
    58EAB2B0 ? C ?
    09434EF3 call 08DD1A28 BF2A8C4 ? BFFFC0C0 ?
    BFFFC0C0 ? 4 ? B6AB0300 ?
    B6ABC2E0 ?
    094106E0 call 094326D4 4 ? 0 ? BFFFC0C0 ?
    093D7BB5 call 0940FEF8 3 ? E ? BFFFC1F8 ? A4 ?
    093D630C call 093D7AC4 BFFFCDF0 ? BFFFCD08 ? 17 ?
    1 ? 0 ? A4 ?
    08293DE6 call 0850FFFF 5E ? 14 ? BFFFCDEC ?
    0A1ED44D call 08293DE6 5E ? 14 ? BFFFCDEC ? 0 ?
    08292122 call 0A1ECAE4 BF2A8C0 ? 5E ? BFFFCDEC ? 0 ?
    BFFFD6E8 ? BFFFD6E4 ?
    0941F190 call 0829193C 0 ? 0 ? BF2A8C0 ? BF83090 ?
    F1 ? 0 ?
    08293DE6 call 0850FFFF 3C ? 4 ? BFFFEB08 ?
    08291238 call 082937A8 3C ? 4 ? BFFFEB08 ? 0 ?
    0828F403 call 08291012 3C ? 4 ? BFFFEB08 ?
    08274A3D call 0828F39C BFFFEAEC ? 3C ? 4 ?
    BFFFEB08 ? B6CC017C ?
    B6C1A17C ?
    __libc_start_main() call 08274A3D 2 ? BFFFEBA4 ? BFFFEBB0 ? 0 ?
    +218 B6C1C898 ? B7600020 ?
    Any idea of what I have to do?
    Thanks for your help..
    Best Regards
    Anna Zanetti

  • SQL startup  Error:ORA-03113: end-of-file on communication channel

    Hello All,
    Oracle 11g 11.2.0.2 Expression Edition
    I made the number of processes to 1 by issuing the below command.
    SQL> alter system set processes = 1;
    SQL>shutdown immediateI am getting the below error when I issued startup command.
    SQL> startup;
    ORA-03113: end-of-file on communication channelalert log:
    Fri Dec 28 14:09:24 2012
    PMON started with pid=2, OS id=2984
    Fri Dec 28 14:09:24 2012
    PSP0 started with pid=3, OS id=5788
    Fri Dec 28 14:09:25 2012
    ORA-00020: No more process state objects available
    ORA-20 errors will not be written to the alert log for
    the next minute. Please look at trace files to see all
    the ORA-20 errors.
    Process GEN0 submission failed with error = 20
    USER (ospid: 4780): terminating the instance due to error 444
    Fri Dec 28 14:09:25 2012
    VKTM started with pid=4, OS id=1676 at elevated priority
    Instance terminated by USER, pid = 4780How to startup my database again?

    alert log:
    Starting up:
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production.
    Using parameter settings in server-side pfile C:\ORACLEXE\APP\ORACLE\PRODUCT\11.2.0\SERVER\DATABASE\INITXE.ORA
    System parameters with non-default values:
      processes                = 6
      sessions                 = 32
      spfile                   = "C:\ORACLEXE\APP\ORACLE\PRODUCT\11.2.0\SERVER\DBS\SPFILEXE.ORA"
      memory_target            = 1G
      control_files            = "C:\ORACLEXE\APP\ORACLE\ORADATA\XE\CONTROL.DBF"
      compatible               = "11.2.0.0.0"
      db_recovery_file_dest    = "C:\oraclexe\app\oracle\fast_recovery_area"
      db_recovery_file_dest_size= 10G
      undo_management          = "AUTO"
      undo_tablespace          = "UNDOTBS1"
      remote_login_passwordfile= "EXCLUSIVE"
      dispatchers              = "(PROTOCOL=TCP) (SERVICE=XEXDB)"
      shared_servers           = 4
      job_queue_processes      = 4
      audit_file_dest          = "C:\ORACLEXE\APP\ORACLE\ADMIN\XE\ADUMP"
      db_name                  = "XE"
      open_cursors             = 300
      diagnostic_dest          = "C:\ORACLEXE\APP\ORACLE"
    Fri Dec 28 14:06:59 2012
    PMON started with pid=2, OS id=2248
    Fri Dec 28 14:06:59 2012
    PSP0 started with pid=3, OS id=3700
    Fri Dec 28 14:07:00 2012
    VKTM started with pid=4, OS id=4492 at elevated priority
    Fri Dec 28 14:07:00 2012
    ORA-00020: No more process state objects available
    VKTM running at (10)millisec precision with DBRM quantum (100)ms
    ORA-20 errors will not be written to the alert log for
    the next minute. Please look at trace files to see all
    the ORA-20 errors.
    Process GEN0 submission failed with error = 20
    USER (ospid: 6076): terminating the instance due to error 444
    Instance terminated by USER, pid = 6076
    Fri Dec 28 14:09:07 2012
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up:
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production.
    Using parameter settings in server-side pfile C:\ORACLEXE\APP\ORACLE\PRODUCT\11.2.0\SERVER\DATABASE\INITXE.ORA
    System parameters with non-default values:
      processes                = 6
      sessions                 = 32
      spfile                   = "C:\ORACLEXE\APP\ORACLE\PRODUCT\11.2.0\SERVER\DBS\SPFILEXE.ORA"
      memory_target            = 1G
      control_files            = "C:\ORACLEXE\APP\ORACLE\ORADATA\XE\CONTROL.DBF"
      compatible               = "11.2.0.0.0"
      db_recovery_file_dest    = "C:\oraclexe\app\oracle\fast_recovery_area"
      db_recovery_file_dest_size= 10G
      undo_management          = "AUTO"
      undo_tablespace          = "UNDOTBS1"
      remote_login_passwordfile= "EXCLUSIVE"
      dispatchers              = "(PROTOCOL=TCP) (SERVICE=XEXDB)"
      shared_servers           = 4
      job_queue_processes      = 4
      audit_file_dest          = "C:\ORACLEXE\APP\ORACLE\ADMIN\XE\ADUMP"
      db_name                  = "XE"
      open_cursors             = 300
      diagnostic_dest          = "C:\ORACLEXE\APP\ORACLE"
    Fri Dec 28 14:09:24 2012
    PMON started with pid=2, OS id=2984
    Fri Dec 28 14:09:24 2012
    PSP0 started with pid=3, OS id=5788
    Fri Dec 28 14:09:25 2012
    ORA-00020: No more process state objects available
    ORA-20 errors will not be written to the alert log for
    the next minute. Please look at trace files to see all
    the ORA-20 errors.
    Process GEN0 submission failed with error = 20
    USER (ospid: 4780): terminating the instance due to error 444
    Fri Dec 28 14:09:25 2012
    VKTM started with pid=4, OS id=1676 at elevated priority
    Instance terminated by USER, pid = 4780pfile.ora
    xe.__db_cache_size=239075328
    xe.__java_pool_size=4194304
    xe.__large_pool_size=12582912
    xe.__oracle_base='C:\oraclexe\app\oracle'#ORACLE_BASE set from environment
    xe.__pga_aggregate_target=427819008
    xe.__sga_target=645922816
    xe.__shared_io_pool_size=75497472
    xe.__shared_pool_size=306184192
    xe.__streams_pool_size=0
    *.audit_file_dest='C:\oraclexe\app\oracle\admin\XE\adump'
    *.compatible='11.2.0.0.0'
    *.control_files='C:\oraclexe\app\oracle\oradata\XE\control.dbf'
    *.db_name='XE'
    *.DB_RECOVERY_FILE_DEST_SIZE=10G
    *.DB_RECOVERY_FILE_DEST='C:\oraclexe\app\oracle\fast_recovery_area'
    *.diagnostic_dest='C:\oraclexe\app\oracle\.'
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=XEXDB)'
    *.job_queue_processes=4
    *.memory_target=1024M
    *.open_cursors=300
    *.processes=100
    *.remote_login_passwordfile='EXCLUSIVE'
    *.sessions=80
    *.shared_servers=4
    *.undo_management='AUTO'
    *.undo_tablespace='UNDOTBS1'

  • Error ORA-03113: end-of-file on communication channel (while starting db)

    Hello everybody! :-)
    Looks like a need help with Oracle 11gr2 (RHEL 6 x64). Faced with a problem while starting database:
    sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Dec 7 01:43:45 2012
    Copyright (c) 1982, 2009, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 2538741760 bytes
    Fixed Size 2216024 bytes
    Variable Size 1828720552 bytes
    Database Buffers 687865856 bytes
    Redo Buffers 19939328 bytes
    Database mounted.
    ORA-03113: end-of-file on communication channel
    Process ID: 6601
    Session ID: 575 Serial number: 5
    This is logfile (/u01/app/oracle/diag/rdbms/orcldocs1/orcldocs1/alert/log.xml):
    <msg time='2012-12-07T01:52:22.363+04:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    host_id='localhost.localdomain' host_addr='127.0.0.1' module='[email protected] (TNS V1-V3)'
    pid='6881'>
    <txt>Errors in file /u01/app/oracle/diag/rdbms/orcldocs1/orcldocs1/trace/orcldocs1_ora_6881.trc:
    ORA-19809: limit exceeded for recovery files
    ORA-19804: cannot reclaim 28496896 bytes disk space from 5218762752 limit
    </txt>
    </msg>
    <msg time='2012-12-07T01:52:22.363+04:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    host_id='localhost.localdomain' host_addr='127.0.0.1' module='[email protected] (TNS V1-V3)'
    pid='6881'>
    <txt>ARCH: Error 19809 Creating archive log file to &apos;/u01/app/oracle/flash_recovery_area/ORCLDOCS1/archivelog/2012_12_07/o1_mf_1_249_%u_.arc&apos;
    </txt>
    </msg>
    <msg time='2012-12-07T01:52:22.368+04:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    host_id='localhost.localdomain' host_addr='127.0.0.1' module='[email protected] (TNS V1-V3)'
    pid='6881'>
    <txt>Errors in file /u01/app/oracle/diag/rdbms/orcldocs1/orcldocs1/trace/orcldocs1_ora_6881.trc:
    ORA-16038: log 3 sequence# 249 cannot be archived
    ORA-19809: limit exceeded for recovery files
    ORA-00312: online log 3 thread 1: &apos;/u01/app/oracle/oradata/orcldocs1/redo03.log&apos;
    </txt>
    </msg>
    <msg time='2012-12-07T01:52:22.368+04:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    host_id='localhost.localdomain' host_addr='127.0.0.1' module='[email protected] (TNS V1-V3)'
    pid='6881'>
    <txt>USER (ospid: 6881): terminating the instance due to error 16038
    </txt>
    </msg>
    <msg time='2012-12-07T01:52:23.540+04:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    host_id='localhost.localdomain' host_addr='127.0.0.1' module='[email protected] (TNS V1-V3)'
    pid='6881'>
    <txt>Instance terminated by USER, pid = 6881
    </txt>
    </msg>
    How can I resolve it, please advice. Thank you.
    Edited by: user9001403 on 06.12.2012 5:58

    Hi,
    Looks like your archivelog space is exhausted. Increase the db_recovery_file_dest_size size and check.
    SQL>  show parameter db_recovery
    NAME                                 TYPE        VALUE
    db_recovery_file_dest                string      /oracle/flash_recovery_area
    db_recovery_file_dest_size           big integer 3882MRegards,
    Anand.

  • Oracle error ORA-03113: end-of-file on communication channel

    Dear Support
    I am getting "ORA-03113: end-of-file on communication channel" when I am trying to access my application.
    The current setup is following
    - two node Sun Cluster with node name as sep1n1 and sep2n2
    - running Oracle RAC (oracle database 10g) with instance name as ADVFRW1 and ADVFRW2
    Please see attached oracle trace file which was generated at the time of problem.
    Can you please help me to know what can be the reason of this oracle error/crash?
    Thanks
    Regards
    VS

    I don't see any Trace file.
    Network Problems?
    Are the databases up and running?

  • FULL JOIN Error - (ORA-03113: end-of-file on communication channel)

    Hello,
    well my following query is running fine, no errors but not showing join records from table B and E.
    Query is as following:
    SELECT D.EMPLOYEE_ID, F.EMP_NAME,
    F.COMPANY_ID, F.COMP_NAME, F.BRANCH_ID, F.BR_NAME,
    TO_CHAR(F.BIRTH_DATE,'DD/MM/YYYY') DOB,
    ((NVL(A.PF_OWN,0) + NVL(A.PF_COMP,0) + NVL(A.PROF_OWN,0) + NVL(A.PROF_COMP,0) + NVL(B.PROF_OWN,0) +
    NVL(B.PROF_COMP,0) + NVL(B.TOT_PF_OWN,0) + NVL(B.TOT_PF_COMP,0) +
    NVL(D.SAL_PF_OWN,0) + NVL(D.SAL_PF_COMP,0) -
    (NVL(E.REV_PF_OWN,0) + NVL(E.REV_PF_COMP,0) + NVL(C.WD_PF_OWN,0) + NVL(C.WD_PF_COMP,0) +
    NVL(C.WD_PROF_OWN,0) + NVL(C.WD_PROF_COMP,0)))) PF_BALANCE
    FROM
    (SELECT EMPLOYEE_ID, SUM(PF_OWN) SAL_PF_OWN, SUM(PF_COMP) SAL_PF_COMP
    FROM EMPLOYEE.EMP_SAL_DETAILS
    WHERE SAL_DATE >= (SELECT MAX(AS_ON_DATE) FROM EMPLOYEE.EMP_PF_OPBALS WHERE AS_ON_DATE <= '01-DEC-06')
    AND SAL_DATE <= '01-DEC-06'
    GROUP BY EMPLOYEE_ID) D
    LEFT JOIN
    (SELECT EMPLOYEE_ID, PF_OWN, PF_COMP, PROF_OWN, PROF_COMP
    FROM EMPLOYEE.EMP_PF_OPBALS
    WHERE AS_ON_DATE IN (SELECT MAX(AS_ON_DATE) FROM EMPLOYEE.EMP_PF_OPBALS WHERE AS_ON_DATE <= '01-DEC-06')) A
    ON (D.EMPLOYEE_ID = A.EMPLOYEE_ID)
    LEFT JOIN
    (SELECT EMPLOYEE_ID, SUM(TOT_PF_OWN) TOT_PF_OWN, SUM(TOT_PF_COMP) TOT_PF_COMP, SUM(PROF_OWN) PROF_OWN, SUM(PROF_COMP) PROF_COMP
    FROM EMPLOYEE.EMP_PF_PROF_DETAILS WHERE END_DATE >= (SELECT MAX(AS_ON_DATE) FROM EMPLOYEE.EMP_PF_OPBALS WHERE AS_ON_DATE <= '01-DEC-06')
    GROUP BY EMPLOYEE_ID) B
    ON (D.EMPLOYEE_ID = B.EMPLOYEE_ID)
    LEFT JOIN
    (SELECT EMPLOYEE_ID, SUM(PF_OWN) WD_PF_OWN, SUM(PF_COMP) WD_PF_COMP, SUM(PROF_OWN) WD_PROF_OWN, SUM(PROF_COMP) WD_PROF_COMP
    FROM EMPLOYEE.EMP_PF_WITHDRAWALS WHERE PF_WDRAW_DATE >= (SELECT MAX(AS_ON_DATE) FROM EMPLOYEE.EMP_PF_OPBALS WHERE AS_ON_DATE <= '01-DEC-06')
    GROUP BY EMPLOYEE_ID) C
    ON (D.EMPLOYEE_ID = C.EMPLOYEE_ID)
    LEFT JOIN
    (SELECT EMPLOYEE_ID, SUM(PF_OWN) REV_PF_OWN, SUM(PF_COMP) REV_PF_COMP
    FROM EMPLOYEE.EMP_SAL_REVERSALS
    WHERE SAL_DATE >= (SELECT MAX(AS_ON_DATE) FROM EMPLOYEE.EMP_PF_OPBALS WHERE AS_ON_DATE >= '01-DEC-06')
    AND SAL_DATE <= '01-DEC-06'
    GROUP BY EMPLOYEE_ID) E
    ON (D.EMPLOYEE_ID = E.EMPLOYEE_ID)
    LEFT JOIN
    (SELECT EMPLOYEE_ID, COMPANY_ID, COMP_NAME, BRANCH_ID, BR_NAME, EMP_NAME, BIRTH_DATE, CONF_DATE FROM V_SEL_SYS_EMP) F
    ON (D.EMPLOYEE_ID = F.EMPLOYEE_ID)
    ORDER BY D.EMPLOYEE_ID
    And when i try to full join my tables and replace LEFT JOIN with FULL OUTER JOIN following errors accurs:
    (ORA-03113: end-of-file on communication channel) and oracle gets disconnect.
    Query will only show records its tables are FULL JOINED.
    Please help what is the solution. Its very urgent also.
    I am thankful to you.
    Regards,
    Imran

    > And when i try to full join my tables and replace LEFT JOIN with FULL OUTER
    JOIN following errors accurs:
    (ORA-03113: end-of-file on communication channel) and oracle gets disconnect.
    This is not an error, but a symptom of an error. An ORA-03113 results when the Oracle Server Process that services your client, terminates abnormally. When that server process terminates, the connection (TCP socket) to your client is torn down - without your client knowing about it.
    The ORA-03113 is generated by your client's Oracle driver when your client suddenly discovers that the connection to the Oracle Server Process is no longer there.
    So why does the Server Process terminate abnormally? Usually due to an internal error (an ORA-600 and/or an ORA-7445).
    These errors results in:
    - error messages to be generated in the Oracle instance's alert log
    - a trace file generated by the server process that includes stack and memory dumps
    You need to determine what these errors are, and the use the ORA-600/ORA-7445 Troubleshooter (Metalink Note 153788.1) on [url http://metalink.oracle.com]Metalink to troubleshoot the error, determine whether it is a bug, if there is a patch or a workaround available, etc.
    > Please help what is the solution. Its very urgent also.
    I do not mind helping out where I can. But I do have a problem with people claiming there problem is urgent, and deserves quicker/better attention that other peoples' problems around here,
    If your problem is urgent then you are in the wrong place. I do not get paid to solve urgent problems quickly. I and others, spend our free time providing assistance. You cannot demand any kind of urgent attention from any of us.
    If you like urgent and special attention, use Oracle Support.

  • Repository Gateway error ORA-03113: end-of-file on communication channel

    Hello -
    We have 4 Oracle Portals installed at my company which are all mirror installs of each other, but one server constantly has issues. About once a week I get an error in the <OraHome>\j2ee\OC4J_Portal\application-deployments\portal\OC4J_Portal_default_island_1\application.log
    11/03/20 06:01:51 portal: [module=PortalServlet, ecid=2766352842090,1] ERROR: Repository Gateway error: Database Error: ORA=3113 ORA-03113: end-of-file on communication channel
    11/03/20 06:01:51 portal: [module=PortalServlet, ecid=2766352842090,1] ERROR: oracle.webdb.repository.service.RepositoryServiceException: Portal session creation failed.
    11/03/20 06:02:44 portal: [module=PortalServlet, ecid=3917404131701,1] ERROR: Repository Gateway error: Database Error: ORA=3114 ORA-03114: not connected to ORACLE
    11/03/20 06:02:44 portal: [module=PortalServlet, ecid=3917404131701,1] ERROR: oracle.webdb.repository.service.RepositoryServiceException: Portal session creation failed.
    11/03/20 06:07:44 portal: [module=PortalServlet, ecid=6271046517224,1] ERROR: Repository Gateway error: Database Error: ORA=3114 ORA-03114: not connected to ORACLE
    11/03/20 06:07:44 portal: [module=PortalServlet, ecid=6271046517224,1] ERROR: oracle.webdb.repository.service.RepositoryServiceException: Portal session creation failed.
    Once this error occurs, a reboot of the server is needed to restore functionality. The Portal server is a 32-bit Windows Server 2003 and the database is Oracle 10g residing on a Unix server. Can anyone help me troubleshoot this?

    Hello -
    We have 4 Oracle Portals installed at my company which are all mirror installs of each other, but one server constantly has issues. About once a week I get an error in the <OraHome>\j2ee\OC4J_Portal\application-deployments\portal\OC4J_Portal_default_island_1\application.log
    11/03/20 06:01:51 portal: [module=PortalServlet, ecid=2766352842090,1] ERROR: Repository Gateway error: Database Error: ORA=3113 ORA-03113: end-of-file on communication channel
    11/03/20 06:01:51 portal: [module=PortalServlet, ecid=2766352842090,1] ERROR: oracle.webdb.repository.service.RepositoryServiceException: Portal session creation failed.
    11/03/20 06:02:44 portal: [module=PortalServlet, ecid=3917404131701,1] ERROR: Repository Gateway error: Database Error: ORA=3114 ORA-03114: not connected to ORACLE
    11/03/20 06:02:44 portal: [module=PortalServlet, ecid=3917404131701,1] ERROR: oracle.webdb.repository.service.RepositoryServiceException: Portal session creation failed.
    11/03/20 06:07:44 portal: [module=PortalServlet, ecid=6271046517224,1] ERROR: Repository Gateway error: Database Error: ORA=3114 ORA-03114: not connected to ORACLE
    11/03/20 06:07:44 portal: [module=PortalServlet, ecid=6271046517224,1] ERROR: oracle.webdb.repository.service.RepositoryServiceException: Portal session creation failed.
    Once this error occurs, a reboot of the server is needed to restore functionality. The Portal server is a 32-bit Windows Server 2003 and the database is Oracle 10g residing on a Unix server. Can anyone help me troubleshoot this?

  • DB Login error (ora - 03113 end of file on communication channel)

    I'm using oracle 9i on windows xp. Whaen try to login thro sql plus it gives subject error. When try to login from Enterprise Manager no errors are giving but cannot access.
    Using sqlplus within same machine where DB is installed. (no remote access).
    What could be the reason/ As I understood this is most common error that oracle has.
    In addition can anybody explain what are the services that are using when connect to the db. (like listener...)
    Thanks

    Hey Sharab,
    If you want to connect to OEM(Oracle Enterprise Manager) then first of all you have to configure it. You can find the Enterprise manager Configuration assistant form Configuration menu. First you configure it and then only you can access the database thorough OEM.
    Just go through this url. You will know the steps to configure the OEM... Do it accrodingly...
    http://download.oracle.com/docs/html/B11000_02/apbinsta.htm
    If there is any prblem in accessing this website, then let me know, i will write the steps completely.
    Please follow the steps given below to enjoy ur OEM jobs.....otherwise, it will not allow you to do all the activities inside the OEM.
    Windows systems require that you set the correct credentials for the Jobs system to work properly in Enterprise Manager. By default, the Management Agent service is installed as a LocalSystem user. When submitting jobs, such as stopping or starting the database, the user submitting the job must have the Log on as a batch job privilege enabled.
    Perform the following steps to establish that privilege for any operating system user who needs to submit an Enterprise Manager job.
    Start the Local Security Policy tool:
    Windows 2003: From the Start menu, select Administrative Tools, then Local Security Policy.
    Windows XP: From the Start menu, select Control Panel, Administrative Tools, then Local Security Policy.
    Under the Security Settings list, expand the list to Local Policies.
    Under Local Policies, double-click User Rights Assignment.
    Under Policy, search for the Log on as a batch job policy.
    Thanks and Regards,
    MSORA

  • Encounter "ORA-03113 : end-of-file on communication channel error "

    Hi experts :
    I schedule a job of MS SSIS(SQL 2005) to do data transfer from Oracle to MS sql server every morning. Few days ago, SQL server report an error as bellow
    錯誤: 2010-05-26 06:04:27.87
    代碼: 0xC0202009
    來源: Package 連接管理員 "pro.twacelifeapp"
    描述: 發生 OLE DB 錯誤。錯誤碼: 0x80004005。
    有 OLE DB 記錄可用。 來源: "OraOLEDB" Hresult: 0x80004005 描述: "ORA-03113 : end-of-file on communication channel error"。
    錯誤結束
    "ORA-03113 : end-of-file on communication channel error " happened.
    many times It makes SSIS interupt. And the wierd thing is, as I restart SSIS again. Then the process done successfully.
    I check Oracle alert.log at the event time, it report "inbound connection timed out (ORA-3136)".
    sqlnet.log also list "TNS-12535: TNS:operation timed out".
    from the day on, MS SQL server reported this error msg everyday.
    I'm really confused and can't find the result of cause.
    dose any helps ,thanks~
    SQL server version : SQL server 2005
    Oracle : Oracle 10g r2

    ORA-03113: end-of-file on communication channel
    Cause:      The connection between Client and Server process was broken.
    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.
    Regarda
    Asif Kabir

  • ORA-03113: end-of-file on communication channel, Please help

    hello Seniors,
    i have strange situation, facing it for the first time.
    i m/s detail form and i am entering data. i successfully saved few records.
    i completed entering one more record and for a reason i left it unsaved.
    after lets say may be a minute or so, i got back to work and then tried to save the unsaved record
    displayed on screen. when i pressed save button i got error;
    ORA-03113: end-of-file on communication channel
    leaving the form as is with this error displayed, i notice that i can very well use the db at server level
    by running other sqls, meaning other resources are functioning. even i tried to open the same application again
    leaving the erroneous form as is, and tried to enter in another form , it communicated well and saved without any errors.
    also there is one more errro along with this, when i query; says "Unable to perform query"
    ORA-01041: internal error. hostdef extension doesn't exist
    and when exit the current form it quits the entire application and kills that particular session,
    but the db is still up and running with no errors.
    The Tnsping <hostname> is responding.
    i want to know while entring on a form, is there any time-out limit between the entry and saving point?
    or any other solution please help. vm thankful.
    my db
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat Jul 25 09:31:46 2009
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Release 10.2.0.1.0 - Production
    form;
    Forms [32 Bit] Version 6.0.8.25.2 (Production)
    Oracle Database 10g Release 10.2.0.1.0 - Production
    Oracle Toolkit Version 6.0.8.25.0 (Production)
    PL/SQL Version 8.0.6.3.0 (Production)
    Oracle Procedure Builder V6.0.8.21.0 Build #1459 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 6.0.7.1.0 - Production
    Oracle Virtual Graphics System Version 6.0.5.38.0 (Production)
    Oracle Tools GUI Utilities Version 6.0.8.25.0 (Production)
    Oracle Multimedia Version 6.0.8.25.0 (Production)
    Oracle Tools Integration Version 6.0.8.18.0 (Production)
    Oracle Tools Common Area Version 6.0.8.18.0
    Oracle CORE Version 4.0.6.0.0 - Production
    Edited by: user10967485 on Jul 25, 2009 12:47 AM
    Edited by: user10967485 on Jul 25, 2009 12:52 AM

    i was testing entering into different forms of my application.
    what i notice that this problem persist with just one form i.e. my purchase order header-details form.
    whats happening is, it allows just the first or rather 1 record (incase if are in a query mode and select create record),
    saving the next or IInd record returns this error. God knows why..?
    can you please suggest any debugging technique to catch the theif?
    i have WNFI, POSt-FORM-COMMIT, KEY-COMMIT, PRE-COMMIT, PRE-FORM at form level
    at heade block i have ;
    PRE-INSERT,UPDATE,DELETE, PRE-RECORD,POST-QUERY, KEY-ENTQRY, ON-POPULTE-DET
    at detail blcok i have;
    PRE-INSERT,UPDATE,PRE-RECORD,POST-QUERY,WHEN-REMOVE-RECORD.
    sqlnet.ora, i have at 4 different dir;
    C:\orant\NET80\ADMIN & C:\orant\NET80\ADMIN\SAMPLE AND
    C:\oracle\product\10.2.0\db_1\NETWORK\ADMIN & C:\oracle\product\10.2.0\db_1\NETWORK\ADMIN\SAMPLE
    I am not so good with Dba interface, so please suggest me which particular file should refer and
    where & what exactly should i look for..? as the file contains a comrehensive entries.
    thankyou once again.
    on displaying error from Help i get this;
    INSERT INTO PURCHASE_ORDER_DETAIL) VALUES ) RETURNING ROWID,POD_COMP_CODE,POD_DATE,POD_POH_CODE,POD_POH_NO,POD_REMARKS,POD_CR_UID,POD_CR_DT,POD_UPD_UID,POD_UPD_DT,POD_PROD_CODE,POD_UOM,POD_QTY,POD_RATE,POD_CURR_CODE,POD_FX_RATE,POD_fc_AMOUNT,POD_LC_AMOUNT INTO :1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15,:16,:17,:18
    ORA-03113: end of on communication channel.

  • ExtractValue Problem----- ORA-03113: end-of-file on communication channel

    Dear Friend
    My system is now on this version
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    PL/SQL Release 9.2.0.4.0 - Production
    CORE 9.2.0.3.0 Production
    TNS for Linux: Version 9.2.0.4.0 - Production
    NLSRTL Version 9.2.0.4.0 - Production
    earlier it was
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    PL/SQL Release 9.2.0.1.0 - Production
    CORE 9.2.0.1.0 Production
    TNS for Linux: Version 9.2.0.1.0 - Production
    NLSRTL Version 9.2.0.1.0 - Production
    I took the cold backup and restore in this version. after that my total system is working very fine, is very fast using than the previous. But only one SQL command is not working which is very urgent to solve
    when i am using this
    SELECT extractValue(value(t),'/produit/cod_pro') cod_pro
    FROM XMLTABLE X,
    TABLE ( xmlsequence (extract(XML_data,'/com/lProducts_list/produit'))) t;
    the table structure is
    SQL> desc XMLTABLE
    Name Null? Type
    DOC_ID NUMBER
    FILE_NAME VARCHAR2(100)
    FILE_DATE DATE
    XML_DATA XMLTYPE
    I got this error
    ORA-03113: end-of-file on communication channel
    Please guide me what to do to resolve this problem
    Farhad

    The error, ORA-03113: end-of-file on communication channel, is a client driver error.
    The client driver simply says "hey, the database server process servicing me has torn down our communication channel!". The communication channel is usually a TCP socket connection.
    The client driver has no idea why. Thus you have to find the answer on the server.
    The usual cause of this communication channel being closed, is the Oracle server process servicing the client session, crashing.
    When an Oracle server process crashes, it does not tell the client. It usually writes an entry to the Oracle alert log, dump a trace file, and terminates. When terminating, it tears down any communication channels (TCP sockets) it may have opened.
    Therefore you must look in
    - the alert log file for an error message listing the crash (which will include the dump file name)
    - look at this trace dump file (which is difficult if you're not familiar with Oracle internals)
    - investigate the stack trace and error codes on Metalink (which often turns up the bug notes for this, plus any workarounds or available patches)
    Usually however, one should log these types of Oracle server errors as a TAR with Oracle Support.

  • Convrtd to Invterval Part- ORA-03113: end-of-file on communication channel

    Hi all,
    I had a table as Interval Partitioned. In order to create XML- Xpath indexes on it, I converted it to Range Partitioned table.
    I am able to create the XPATH indexes but I get the error: ORA-03113: end-of-file on communication channel
    - When I revert the code to Interval Partitioned without the XMLIndex, it works fine(although takes time as no XML Index)
    - When I convert table to non partitioned table, create the XML Index, it works fine.
    But I need the partitons, so when I create the partitioned table I get the error.
    CREATE TABLE INT_PART_TABLE
    DB_ID VARCHAR2(10 BYTE),
    xML_mESSAGE SYS.XMLTYPE,
    LOAD_TIMESTAMP TIMESTAMP(6)
    XMLTYPE xML_mESSAGE STORE AS BINARY XML
    PARTITION BY RANGE (LOAD_TIMESTAMP)
    PARTITION MAX VALUES LESS THAN (TIMESTAMP' 2013-06-01 00:00:00')
    TABLESPACE CSTR_STG_DATA
    NOCOMPRESS
    NOCACHE
    ENABLE ROW MOVEMENT;
    BEGIN
    DBMS_XMLINDEX.dropparameter('Indx_Par');
    END;
    BEGIN
    DBMS_XMLINDEX.REGISTERPARAMETER(
    'Indx_Par',
    'PATH TABLE Table1
    PATHS (INCLUDE ( /abc:field1/xyz:field2
    /abc:field1/def:field2
    NAMESPACE MAPPING ( xmlns:abc="ABCD"
    xmlns:def="DEFG"
    xmlns:xyz="XYZA"
    end;
    create index INDX_XPATHS on "INT_PART_TABLE" (XML_MESSAGE) indextype is xdb.xmlindex
    parameters ('PARAM Indx_Par') local;
    Now if I execute the following statement in
    SELECT T.xML_mESSAGE
    FROM INT_PART_TABLE1 T
    WHERE XMLEXISTS (
    declare namespace abc="ABCD";
    declare namespacedef="DEFG";
    declare namespace xyz="XYZA";
    let $tt as xs:boolean := fn:exists($p/main/id = ("144283","9085802")])
    return if ($tt) then true()
    else ()'
    PASSING T.xML_mESSAGE AS "p");
    - Is there any other way of writing this Select statement, which may work?
    - Any other thing I need to take care of when defining the table and partitions script so that I don't get this error?

    Hi,
    I think it's time you give a clear (and working) test case so that we can safely try to reproduce the issue.
    What you've given so far has syntax error and name mismatch.
    So please :
    - database version (SELECT * FROM v$version)
    - complete sequence of DLLs
    - some sample XML documents (it doesn't have to be the real ones, but at least something realistic)
    Thanks in advance.
    declare namespace abc="ABCD";
    declare namespacedef="DEFG";
    declare namespace xyz="XYZA";
    let $tt as xs:boolean := fn:exists($p/main/id = ("144283","9085802")])
    return if ($tt) then true()
    else ()'Why all that stuff? You don't have to return a boolean.
    The following works for me on 11.2.0.3 :
    SQL> CREATE TABLE int_part_table (
      2    db_id          VARCHAR2(10)
      3  , xml_message    XMLTYPE
      4  , load_timestamp TIMESTAMP
      5  )
      6  XMLTYPE xml_message STORE AS BINARY XML
      7  PARTITION BY RANGE (load_timestamp) (
      8    PARTITION MAX VALUES LESS THAN (timestamp '2013-06-01 00:00:00')
      9  )
    10  NOCOMPRESS
    11  NOCACHE
    12  ENABLE ROW MOVEMENT;
    Table created
    SQL> insert into int_part_table values (1, xmltype('<main><id>144283</id></main>'), sysdate);
    1 row inserted
    SQL> insert into int_part_table values (1, xmltype('<main><id>9085802</id></main>'), sysdate);
    1 row inserted
    SQL> insert into int_part_table values (1, xmltype('<main><id>1</id></main>'), sysdate);
    1 row inserted
    SQL> commit;
    Commit complete
    SQL> create index int_part_table_uix on int_part_table (xml_message)
      2  indextype is xdb.xmlindex
      3  parameters (
      4  'PATH TABLE INT_PART_TABLE_PT
      5  PATHS ( INCLUDE ( /main/id ) )')
      6  local;
    Index created
    SQL> SELECT xml_message
      2  FROM int_part_table
      3  WHERE XMLExists(
      4         '/main[id=("144283","9085802")]'
      5         PASSING xml_message
      6       )
      7  ;
    XML_MESSAGE
    <main>
      <id>144283</id>
    </main>
    <main>
      <id>9085802</id>
    </main>
    Execution Plan
    Plan hash value: 3517234298
    | Id  | Operation                              | Name                         | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
    |   0 | SELECT STATEMENT                       |                              |     1 |   155 |    34   (6)| 00:00:01 |       |       |
    |   1 |  NESTED LOOPS                          |                              |     1 |   155 |    34   (6)| 00:00:01 |       |       |
    |   2 |   VIEW                                 | VW_SQ_1                      |     1 |    25 |    32   (4)| 00:00:01 |       |       |
    |   3 |    HASH UNIQUE                         |                              |     1 |    47 |         |             |       |       |
    |*  4 |     HASH JOIN SEMI                     |                              |     1 |    47 |    32   (4)| 00:00:01 |       |       |
    |   5 |      PARTITION SYSTEM SINGLE           |                              |     2 |    90 |     2   (0)| 00:00:01 |     1 |     1 |
    |*  6 |       TABLE ACCESS BY LOCAL INDEX ROWID| INT_PART_TABLE_PT            |     2 |    90 |     2   (0)| 00:00:01 |     1 |     1 |
    |*  7 |        INDEX SKIP SCAN                 | SYS117585_INT_PART__PIKEY_IX |     3 |       |     1   (0)| 00:00:01 |     1 |     1 |
    |   8 |      COLLECTION ITERATOR PICKLER FETCH | XQSEQUENCEFROMXMLTYPE        |  8168 | 16336 |    29   (0)| 00:00:01 |       |       |
    |*  9 |   TABLE ACCESS BY USER ROWID           | INT_PART_TABLE               |     1 |   130 |     1   (0)| 00:00:01 | ROWID | ROWID |
    Predicate Information (identified by operation id):
       4 - access("SYS_P3"."VALUE"=SYS_XQ_UPKXML2SQL(VALUE(KOKBF$),2,1,0) AND
                  SUBSTRB("VALUE",1,1599)=SUBSTRB(SYS_XQ_UPKXML2SQL(VALUE(KOKBF$),2,1,0),1,1599))
       6 - filter(SYS_XMLI_LOC_ISNODE("SYS_P3"."LOCATOR")=1)
       7 - access("SYS_P3"."PATHID"=HEXTORAW('704E') )
           filter("SYS_P3"."PATHID"=HEXTORAW('704E') )
       9 - filter("ITEM_6"=TBL$OR$IDX$PART$NUM("DEV"."INT_PART_TABLE",0,7,65535,"INT_PART_TABLE".ROWID))
    Note
       - Unoptimized XML construct detected (enable XMLOptimizationCheck for more information)
    SQL> SELECT xml_message
      2  FROM int_part_table
      3  WHERE XMLExists(
      4         '/main[id="144283" or id="9085802"]'
      5         PASSING xml_message
      6       )
      7  ;
    XML_MESSAGE
    <main>
      <id>144283</id>
    </main>
    <main>
      <id>9085802</id>
    </main>
    Execution Plan
    Plan hash value: 3748936130
    | Id  | Operation                                | Name                         | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
    |   0 | SELECT STATEMENT                         |                              |     1 |   155 |    11  (10)| 00:00:01 |       |       |
    |   1 |  NESTED LOOPS                            |                              |     1 |   155 |    11  (10)| 00:00:01 |       |       |
    |   2 |   VIEW                                   | VW_SQ_1                      |     2 |    50 |     8   (0)| 00:00:01 |       |       |
    |   3 |    HASH UNIQUE                           |                              |     2 |   180 |         |             |       |       |
    |   4 |     CONCATENATION                        |                              |       |       |         |             |       |       |
    |   5 |      NESTED LOOPS                        |                              |       |       |         |             |       |       |
    |   6 |       NESTED LOOPS                       |                              |     1 |    90 |     4   (0)| 00:00:01 |       |       |
    |   7 |        PARTITION SYSTEM SINGLE           |                              |     1 |    45 |     2   (0)| 00:00:01 |     1 |     1 |
    |*  8 |         TABLE ACCESS BY LOCAL INDEX ROWID| INT_PART_TABLE_PT            |     1 |    45 |     2   (0)| 00:00:01 |     1 |     1 |
    |*  9 |          INDEX SKIP SCAN                 | SYS117585_INT_PART__PIKEY_IX |     3 |       |     1   (0)| 00:00:01 |     1 |     1 |
    |  10 |        PARTITION SYSTEM SINGLE           |                              |     1 |       |     1   (0)| 00:00:01 |     1 |     1 |
    |* 11 |         INDEX RANGE SCAN                 | SYS117585_INT_PART__PIKEY_IX |     1 |       |     1   (0)| 00:00:01 |     1 |     1 |
    |* 12 |       TABLE ACCESS BY LOCAL INDEX ROWID  | INT_PART_TABLE_PT            |     1 |    45 |     2   (0)| 00:00:01 |     1 |     1 |
    |  13 |      NESTED LOOPS                        |                              |       |       |         |             |       |       |
    |  14 |       NESTED LOOPS                       |                              |     1 |    90 |     4   (0)| 00:00:01 |       |       |
    |  15 |        PARTITION SYSTEM SINGLE           |                              |     1 |    45 |     2   (0)| 00:00:01 |     1 |     1 |
    |* 16 |         TABLE ACCESS BY LOCAL INDEX ROWID| INT_PART_TABLE_PT            |     1 |    45 |     2   (0)| 00:00:01 |     1 |     1 |
    |* 17 |          INDEX SKIP SCAN                 | SYS117585_INT_PART__PIKEY_IX |     3 |       |     1   (0)| 00:00:01 |     1 |     1 |
    |  18 |        PARTITION SYSTEM SINGLE           |                              |     1 |       |     1   (0)| 00:00:01 |     1 |     1 |
    |* 19 |         INDEX RANGE SCAN                 | SYS117585_INT_PART__PIKEY_IX |     1 |       |     1   (0)| 00:00:01 |     1 |     1 |
    |* 20 |       TABLE ACCESS BY LOCAL INDEX ROWID  | INT_PART_TABLE_PT            |     1 |    45 |     2   (0)| 00:00:01 |     1 |     1 |
    |* 21 |   TABLE ACCESS BY USER ROWID             | INT_PART_TABLE               |     1 |   130 |     1   (0)| 00:00:01 | ROWID | ROWID |
    Predicate Information (identified by operation id):
       8 - filter("SYS_P5"."VALUE"='9085802' AND SYS_XMLI_LOC_ISNODE("SYS_P5"."LOCATOR")=1 AND SUBSTRB("VALUE",1,1599)='9085802')
       9 - access("SYS_P5"."PATHID"=HEXTORAW('704E') )
           filter("SYS_P5"."PATHID"=HEXTORAW('704E') )
      11 - access("SYS_P5"."RID"="SYS_P3"."RID" AND "SYS_P3"."PATHID"=HEXTORAW('0BBD')  AND
                  "SYS_P3"."ORDER_KEY"<"SYS_P5"."ORDER_KEY")
           filter(SYS_ORDERKEY_DEPTH("SYS_P3"."ORDER_KEY")+1=SYS_ORDERKEY_DEPTH("SYS_P5"."ORDER_KEY") AND
                  TBL$OR$IDX$PART$NUM("DEV"."INT_PART_TABLE",0,7,65535,"SYS_P3"."RID")=TBL$OR$IDX$PART$NUM("DEV"."INT_PART_TABLE_PT",0,7,65535,ROWI
                  D) AND "SYS_P5"."ORDER_KEY"<SYS_ORDERKEY_MAXCHILD("SYS_P3"."ORDER_KEY"))
      12 - filter(SYS_XMLI_LOC_ISNODE("SYS_P3"."LOCATOR")=1)
      16 - filter("SYS_P5"."VALUE"='144283' AND SYS_XMLI_LOC_ISNODE("SYS_P5"."LOCATOR")=1 AND SUBSTRB("VALUE",1,1599)='144283' AND
                  (LNNVL("SYS_P5"."VALUE"='9085802') OR LNNVL("SYS_P5"."PATHID"=HEXTORAW('704E') ) OR
                  LNNVL(SYS_XMLI_LOC_ISNODE("SYS_P5"."LOCATOR")=1) OR LNNVL(SUBSTRB("VALUE",1,1599)='9085802')))
      17 - access("SYS_P5"."PATHID"=HEXTORAW('704E') )
           filter("SYS_P5"."PATHID"=HEXTORAW('704E') )
      19 - access("SYS_P5"."RID"="SYS_P3"."RID" AND "SYS_P3"."PATHID"=HEXTORAW('0BBD')  AND
                  "SYS_P3"."ORDER_KEY"<"SYS_P5"."ORDER_KEY")
           filter(SYS_ORDERKEY_DEPTH("SYS_P3"."ORDER_KEY")+1=SYS_ORDERKEY_DEPTH("SYS_P5"."ORDER_KEY") AND
                  TBL$OR$IDX$PART$NUM("DEV"."INT_PART_TABLE",0,7,65535,"SYS_P3"."RID")=TBL$OR$IDX$PART$NUM("DEV"."INT_PART_TABLE_PT",0,7,65535,ROWI
                  D) AND "SYS_P5"."ORDER_KEY"<SYS_ORDERKEY_MAXCHILD("SYS_P3"."ORDER_KEY"))
      20 - filter(SYS_XMLI_LOC_ISNODE("SYS_P3"."LOCATOR")=1)
      21 - filter("ITEM_2"=TBL$OR$IDX$PART$NUM("DEV"."INT_PART_TABLE",0,7,65535,"INT_PART_TABLE".ROWID))I asked in one of your other threads if /main/id was unique per XML document.
    If so, you can use a simple function-based index instead of the XMLIndex :
    SQL> drop index int_part_table_uix;
    Index dropped.
    SQL> create index int_part_table_ix1 on int_part_table (
      2    xmlcast(
      3      xmlquery('/main/id' passing XML_MESSAGE returning content)
      4      as varchar2(10)
      5    )
      6  );
    Index created.
    SQL> SELECT xml_message
      2  FROM int_part_table
      3  WHERE XMLCast(
      4          XMLQuery('/main/id' PASSING xml_message RETURNING CONTENT)
      5          AS VARCHAR2(10)
      6        )
      7  IN ('144283', '9085802');
    XML_MESSAGE
    <main>
      <id>144283</id>
    </main>
    <main>
      <id>9085802</id>
    </main>
    Execution Plan
    Plan hash value: 2864653096
    | Id  | Operation                           | Name               | Rows  | Bytes | Cost (%CPU)| Time  | Pstart| Pstop |
    |   0 | SELECT STATEMENT                    |                    |     2 |   236 |     2   (0)| 00:00:01 |       |       |
    |   1 |  INLIST ITERATOR                    |                    |       |       |            |       |  |       |
    |   2 |   TABLE ACCESS BY GLOBAL INDEX ROWID| INT_PART_TABLE     |     2 |   236 |     2   (0)| 00:00:01 |     1 |     1 |
    |*  3 |    INDEX RANGE SCAN                 | INT_PART_TABLE_IX1 |     2 |       |     1   (0)| 00:00:01 |       |       |
    Predicate Information (identified by operation id):
       3 - access(CAST(EXTRACTVALUE(SYS_MAKEXML(0,"SYS_NC00003$"),'/main/id',null,0,0,524293,1073874944) AS
                  varchar2(10)   )='144283' OR CAST(EXTRACTVALUE(SYS_MAKEXML(0,"SYS_NC00003$"),'/main/id',null,0,0,524293,1073874944
                  ) AS varchar2(10)   )='9085802')

  • EAL extract fails with ORA-03113 end-of-file on communication channel error

    Hi,
    We are trying to run an EAL (v11.1.1.4) extract from an HFM (v9.3.1.4) environment onto Oracle database. We are able to run the extract successfully for few hundred records, but when the records exceeds 10 million we get the error below
    [03 Dec 2011 06:02:41] [dbmgr] ERROR: OCI: HR#13579: Cannot execute statement for insert
    [03 Dec 2011 06:02:41] [dbmgr] ERROR: OCI: HR#01428: OCI_ERROR: (ORA-03113: end-of-file on communication channel;Process ID: 16323;Session ID: 15 Serial number: 8288; (code=3113)) [rec#1]
    [03 Dec 2011 06:02:41] [dbmgr] ERROR: OCI: HR#13580: Cannot rollback
    [03 Dec 2011 06:02:41] [dbmgr] ERROR: OCI: HR#01428: OCI_ERROR: (ORA-03114: not connected to ORACLE; (code=3114)) [rec#1]
    [03 Dec 2011 06:02:41] [dbmgr] WARN : HR#13674: Data move region job failed: HR#00000: some operations failed, see details in the log file; 81877900 cell(s) processed in 70348 second(s)
    We checked on the DB and the Oracle session that was doing the insert was open even after the extract failed with the above error.
    Any idea what could be causing this??
    Thanks
    Ramya Suresh

    Hi,
    I was able to fix this issue.
    From the trace file identified the related objects and validated them.
    More details can be found in below MOS note.
    [ID 421711.1]--Understanding and Diagnosing ORA-00600 [17069] Errors
    Thanks for all the inputs...

  • Database failed to start up - ORA-03113: end-of-file on communication chann

    Hi,
    We had power failure, and i had to restore the database from offline backup.
    after restore i tried to start the database and i received following errors.
    SQL> startup
    ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
    ORACLE instance started.
    Total System Global Area 663961600 bytes
    Fixed Size 2184056 bytes
    Variable Size 394267784 bytes
    Database Buffers 260046848 bytes
    Redo Buffers 7462912 bytes
    Database mounted.
    ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
    SQL>
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    Process ID: 7179
    Session ID: 227 Serial number: 3
    SQL>
    I checked the alert.log
    Tue Jun 19 08:06:33 2012
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Autotune of undo retention is turned on.
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options.
    Using parameter settings in server-side spfile /oracle/PRD/112_64/dbs/spfilePRD.ora
    System parameters with non-default values:
    processes = 900
    sessions = 1800
    event = "10027"
    event = "10028"
    event = "10142"
    event = "10183"
    event = "10191"
    event = "38068 level 100"
    event = "38085"
    event = "38087"
    event = "44951 level 1024"
    shared_pool_size = 352M
    filesystemio_options = "setall"
    control_files = "/oracle/PRD/sapdata1/cntrl/cntrlPRD.dbf"
    control_files = "/oracle/PRD/origlogA/cntrl/cntrlPRD.dbf"
    control_files = "/oracle/PRD/saparch/cntrl/cntrlPRD.dbf"
    control_file_record_keep_time= 30
    db_block_size = 8192
    db_cache_size = 248M
    compatible = "11.2.0"
    log_archive_dest_1 = "LOCATION=/oracle/PRD/saparch/PRDarch"
    log_archive_dest_2 = "LOCATION=/oracle/PRD/saparch1/PRDarch"
    log_archive_format = "%t_%s_%r.dbf"
    db_files = 1024
    log_checkpoints_to_alert = TRUE
    replication_dependency_tracking= FALSE
    undo_tablespace = "PSAPUNDO"
    inmemory_undo = FALSE
    undo_retention = 16000
    recyclebin = "off"
    remote_os_authent = TRUE
    service_names = "PRD.WORLD"
    parallel_max_servers = 80
    parallel_execution_message_size= 16384
    fixcontrol = "5099019:ON"
    fixcontrol = "5705630:ON"
    fixcontrol = "6399597:ON"
    fixcontrol = "6430500:ON"
    fixcontrol = "6440977:ON"
    fixcontrol = "6626018:ON"
    fixcontrol = "6972291:ON"
    fixcontrol = "9495669:ON"
    fixcontrol = "9196440:ON"
    fixcontrol = "8937971:ON"
    audit_file_dest = "/oracle/PRD/saptrace/audit"
    hpux_sched_noage = 178
    db_name = "PRD"
    open_cursors = 900
    star_transformation_enabled= "TRUE"
    optimizerextended_cursor_sharing_rel= "NONE"
    optimizeradaptive_cursor_sharing= FALSE
    parallel_threads_per_cpu = 1
    optimizer_index_cost_adj = 20
    query_rewrite_enabled = "FALSE"
    optimpeek_user_binds = FALSE
    pga_aggregate_target = 4G
    optimizeruse_feedback = FALSE
    diagnostic_dest = "/oracle/PRD/saptrace"
    max_dump_file_size = "20000"
    Deprecated system parameters with specified values:
    remote_os_authent
    End of deprecated system parameter listing
    Tue Jun 19 08:06:34 2012
    PMON started with pid=2, OS id=7143
    Tue Jun 19 08:06:34 2012
    PSP0 started with pid=3, OS id=7145
    Tue Jun 19 08:06:35 2012
    VKTM started with pid=4, OS id=7147
    VKTM running at (100ms) precision
    Tue Jun 19 08:06:35 2012
    GEN0 started with pid=5, OS id=7149
    Tue Jun 19 08:06:35 2012
    DIAG started with pid=6, OS id=7151
    Tue Jun 19 08:06:35 2012
    DBRM started with pid=7, OS id=7153
    Tue Jun 19 08:06:35 2012
    DIA0 started with pid=8, OS id=7155
    Tue Jun 19 08:06:35 2012
    MMAN started with pid=9, OS id=7157
    Tue Jun 19 08:06:35 2012
    DBW0 started with pid=10, OS id=7159
    Tue Jun 19 08:06:35 2012
    LGWR started with pid=11, OS id=7161
    Tue Jun 19 08:06:35 2012
    CKPT started with pid=12, OS id=7163
    Tue Jun 19 08:06:35 2012
    SMON started with pid=13, OS id=7165
    Tue Jun 19 08:06:35 2012
    RECO started with pid=14, OS id=7167
    Tue Jun 19 08:06:35 2012
    MMON started with pid=15, OS id=7169
    Tue Jun 19 08:06:35 2012
    MMNL started with pid=16, OS id=7171
    ORACLE_BASE from environment = /oracle
    Tue Jun 19 08:06:36 2012
    ALTER DATABASE MOUNT
    Successful mount of redo thread 1, with mount id 1849974924
    Database mounted in Exclusive Mode
    Lost write protection disabled
    Completed: ALTER DATABASE MOUNT
    Tue Jun 19 08:06:40 2012
    ALTER DATABASE OPEN
    Errors in file /oracle/PRD/saptrace/diag/rdbms/prd/PRD/trace/PRD_ora_7179.trc:
    ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
    ORA-1589 signalled during: ALTER DATABASE OPEN...
    Tue Jun 19 08:08:01 2012
    alter database open resetlogs
    RESETLOGS after complete recovery through change 23408973429
    Exception [type: SIGSEGV, Invalid Permissions for object] [ADDR:0x4] [PC:0x40000000083B8941, $cold_kcrf_val_log_bsz()+929] [flags: 0x0, count: 1]
    Errors in file /oracle/PRD/saptrace/diag/rdbms/prd/PRD/trace/PRD_ora_7179.trc (incident=583361):
    ORA-07445: exception encountered: core dump [kcrf_val_log_bsz()+929] [SIGSEGV] [ADDR:0x4] [PC:0x40000000083B8941] [Invalid Permissions for object] []
    ORA-27041: unable to open file
    HPUX-ia64 Error: 13: Permission denied
    Additional information: 9
    ORA-27041: unable to open file
    HPUX-ia64 Error: 13: Permission denied
    Additional information: 9
    Incident details in: /oracle/PRD/saptrace/diag/rdbms/prd/PRD/incident/incdir_583361/PRD_ora_7179_i583361.trc
    Use ADRCI or Support Workbench to package the incident.
    See Note 411.1 at My Oracle Support for error and packaging details.
    Tue Jun 19 08:08:05 2012
    Dumping diagnostic data in directory=[cdmp_20120619080805], requested by (instance=1, osid=7179), summary=[incident=583361].
    Tue Jun 19 08:08:06 2012
    Sweep [inc][583361]: completed
    Sweep [inc2][583361]: completed
    I noticed the in spfile that archive log was still being used, but i remember that we disabled the archiving.
    oraprd> more spfilePRD.ora
    ^G^D^D[.M-^D"^K
    PRD.__db_cache_size=241591910
    PRD.__oracle_base='/oracle'#ORACLE_BASE set from environment
    PRD.__shared_pool_size=365743308
    *._fix_control='5099019:ON','5705630:ON','6399597:ON','6430500:ON','6440977:ON','6626018:ON','6972291:ON','9495669:ON','9196440:ON','8937971:ON'
    *._in_memory_undo=FALSE#RECOMMENDED BY ORACLE/SAP FOR 11.2.0 - SAP note 1431798
    *._optim_peek_user_binds=FALSE#RECOMMENDED BY ORACLE/SAP FOR 11.2.0 - SAP note 1431798
    *._optimizer_adaptive_cursor_sharing=FALSE#RECOMMENDED BY ORACLE/SAP FOR 11.2.0 - SAP note 1431798
    *._optimizer_extended_cursor_sharing_rel='NONE'#RECOMMENDED BY ORACLE/SAP FOR 11.2.0 - SAP note 1431798
    *._optimizer_use_feedback=FALSE#RECOMMENDED BY ORACLE/SAP FOR 11.2.0 - SAP note 1431798
    *.audit_file_dest='/oracle/PRD/saptrace/audit'
    *.compatible='11.2.0'#Parameter setting for SAP on Oracle Release 11.2 (see SAP note 1431798)
    *.control_file_record_keep_time=30
    *.control_files='/oracle/PRD/sapdata1/cntrl/cntrlPRD.dbf','/oracle/PRD/origlogA/cntrl/cntrlPRD.dbf','/oracle/PRD/saparch/cntrl/cntrlPRD.dbf'
    *.db_block_size=8192
    *.db_cache_size=257698037
    *.db_files=1024
    *.db_name='PRD'
    *.diagnostic_dest='/oracle/PRD/saptrace'
    *.event='10027','10028','10142','10183','10191','38068 level 100','38085','38087','44951 level 1024'#RECOMMENDED BY ORACLE/SAP FOR 11.2.0 - SAP note 1431798
    *.filesystemio_options='setall'
    *.hpux_sched_noage=178
    *.log_archive_dest_1='LOCATION=/oracle/PRD/saparch/PRDarch'
    *.log_archive_dest_2='LOCATION=/oracle/PRD/saparch1/PRDarch'
    *.log_archive_format='%t_%s_%r.dbf'
    *.log_checkpoints_to_alert=TRUE
    *.max_dump_file_size='20000'
    *.open_cursors=900
    *.optimizer_index_cost_adj=20
    *.parallel_execution_message_size=16384
    *.parallel_max_servers=80
    *.parallel_threads_per_cpu=1
    *.pga_aggregate_target=4294967296
    *.processes=900
    *.query_rewrite_enabled='FALSE'
    *.recyclebin='off'
    *.remote_os_authent=TRUE#Parameter setting for SAP on Oracle Release 11.2 (see SAP note 1431798)
    *.replication_dependency_tracking=FALSE
    *.service_names='PRD.WORLD'
    *.sessions=1800
    *.shared_pool_size=365743308
    *.star_transformation_enabled='TRUE'
    *.undo_retention=16000
    *.undo_tablespace='PSAPUNDO'
    I reviewed the /oracle/PRD/saptrace/diag/rdbms/prd/PRD/incident/incdir_583361/PRD_ora_7179_i583361.trc, it hugh file with alot of Jargon.
    Any idea what could be causing this error. Thanks in advance

    ALTER DATABASE OPEN RESETLOGS
    RESETLOGS after complete recovery through change 23408973429
    Exception [type: SIGSEGV, Invalid Permissions for object] [ADDR:0x4] [PC:0x40000000083B8941, $cold_kcrf_val_log_bsz()+929] [flags: 0x0, count: 1]
    Errors in file /oracle/PRD/saptrace/diag/rdbms/prd/PRD/trace/PRD_ora_8363.trc (incident=583362):
    ORA-07445: exception encountered: core dump [kcrf_val_log_bsz()+929] [SIGSEGV] [ADDR:0x4] [PC:0x40000000083B8941] [Invalid Permissions for object] []
    ORA-27041: unable to open file
    HPUX-ia64 Error: 13: Permission denied
    Additional information: 9
    ORA-27041: unable to open file
    HPUX-ia64 Error: 13: Permission denied
    Additional information: 9
    Incident details in: /oracle/PRD/saptrace/diag/rdbms/prd/PRD/incident/incdir_583362/PRD_ora_8363_i583362.trc
    Use ADRCI or Support Workbench to package the incident.
    See Note 411.1 at My Oracle Support for error and packaging details.
    Tue Jun 19 09:16:24 2012
    Dumping diagnostic data in directory=[cdmp_20120619091624], requested by (instance=1, osid=8363), summary=[incident=583362].
    Tue Jun 19 09:16:26 2012
    Sweep [inc][583362]: completed
    Sweep [inc2][583362]: completed

Maybe you are looking for

  • Replicate sales orders from  ecc to crm

    Hi experts,                     We are creating sales orders in ECC and want to replicate them into CRM. Can you please tell me the configuration steps required in the middleware to replicate the orders from ecc to crm. thanks in advance Andy

  • Fifth Gen iPod won't sync to itunes.

    Hello      I've had my fifth iPod for nearly a year and it's been capable of syncing just fine, until I purchased a new laptop. I'm not sure if it is my ipod or the laptop that won't apprehend. I at first thought there was something wrong with my cor

  • How do I change firewall settings modified by VPN server?

    (This actually happened while I was running Lion, but seems to be the same problem under Mountain Lion) I installed Check Point Software Technologies Ltd. Endpoint Security VPN for Mac E75 VPN client on my iMac to access my employer's network.  It wo

  • Can I use adobe reader with my iPad

    Can I use adobe reader on my iPad

  • Skype.exe - problem library ntdll.dll

    Many times already I have re-downloaded Skype due to problems. When I switch computer on, the warning message is shown : title: "Skype.exe - Nie znaleziono punktu wejścia" text: "Nie znaleziono punktu wejścia procedury NtAlpcSendWaitReceivePort w bib