Export meet ora-3113 error!

In my database there are two scheama t1 ,t2.
When I use the command 'export' to export the
data in 'USER' mode,one of the scheama t1 meet the oracle error ORA-3113,but the other t2 is ok!
the error occured when t1's tables are exported and would be exported its synonyms!
I will be appricated if anyone can help me!
null

ORA-00600/ORA-07445/ORA-03113 = Oracle bug => search on Metalink and/or call Oracle support

Similar Messages

  • EXPORT MEET ORA-O3113 ERROR!

    In my database there are two scheama t1 ,t2.
    When I use the command 'export' to export the
    data in 'USER' mode,one of the scheama t1 meet the oracle error ORA-3113,but the other t2 is ok!
    the error occured when t1's tables are exported and would be exported its synonyms!
    I will be appricated if anyone can help me!
    null

    hi
    This error is caused usually when a connection has broken for some reason.
    Is it reproduceable error or did u get it only once.
    Pelase check the trace files .
    thanks
    devi

  • ORA 3113 error when dropping user

    I have an instance of oracle 9.2 that when I drop a user I get the ORA-3113 error.
    I have no other problems with this database, It can be started and stopped with out error, users can connect...etc.
    I tried the following oracle solution without success
    Subject:      ORA-03113 While Dropping a User     
          Doc ID:      Note:291186.1     Type:      PROBLEM     
          Last Revision Date:      21-JUL-2005     Status:      MODERATED     
    The information in this document applies to:
    Oracle Server - Enterprise Edition - Version: 9.2.0.5
    This problem can occur on any platform.
    Errors
    ORA-03113 "end-of-file on communication channel"
    Symptoms
    ORA-03113 is thrown, while dropping a User
    SQL> drop user test9 cascade;
    ORA-03113 end-of-file on communication channel
    Cause
    Corrupted password file
    Check whether REMOTE_LOGIN_PASSWORDFILE is set to { SHARED | EXCLUSIVE}
    Fix
    -- Recreate the password file.
    ++ $ orapwd file=orapw<sid> password=<sys's password> entries=<max # user's>
    NOTE:
    -- Set the REMOTE_LOGIN_PASSWORDFILE=NONE
    -- Drop the user
    -- If it is successful, You are hitting this problem.

    Are u getting this error sometimes while connecting to DB.
    If not check the trace file generated on the server at failure time.
    Regards
    Raman

  • Ora -3113 error in the alert log

    Hi ,
    We are getting ORA-3113 error in the alertlog and i pasted below alert log entry.
    VERSION INFORMATION:
    TNS for Linux: Version 11.1.0.7.0 - Production
    Unix Domain Socket IPC NT Protocol Adaptor for Linux: Version 11.1.0.7.0 - Production
    Oracle Bequeath NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
    TCP/IP NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
    Time: 27-JAN-2011 16:11:25
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12535
    TNS-12535: TNSperation timed out
    ns secondary err code: 12560
    nt main err code: 505
    TNS-00505: Operation timed out
    nt secondary err code: 110
    nt OS err code: 0
    Client address: (ADDRESS=(PROTOCOL=tcp)(HOST=10.100.72.127)(PORT=2844))
    Thu Jan 27 16:13:55 2011
    opidcl aborting process unknown ospid (18585_47319544949952) due to error ORA-3113
    Thu Jan 27 16:14:03 2011
    Thread 2 advanced to log sequence 2022 (LGWR switch)
    Current log# 4 seq# 2022 mem# 0: +DATA/systemprod/onlinelog/group_4.269.736019283
    Current log# 4 seq# 2022 mem# 1: +FLASH1/systemprod/onlinelog/group_4.262.736019285
    Thu Jan 27 16:14:13 2011
    opidcl aborting process unknown ospid (14096_47207734746304) due to error ORA-3113
    Thu Jan 27 16:16:34 2011
    Thread 2 advanced to log sequence 2023 (LGWR switch)
    Current log# 8 seq# 2023 mem# 0: +DATA/systemprod/onlinelog/group_8.319.736018999
    Current log# 8 seq# 2023 mem# 1: +FLASH1/systemprod/onlinelog/group_8.3138.736018999
    Thu Jan 27 16:19:33 2011
    Thread 2 advanced to log sequence 2024 (LGWR switch)
    Current log# 3 seq# 2024 mem# 0: +DATA/systemprod/onlinelog/group_3.268.736019049
    Current log# 3 seq# 2024 mem# 1: +FLASH1/systemprod/onlinelog/group_3.261.736019051
    Thu Jan 27 16:22:17 2011
    What could be the workaround to resove this issue
    Regards
    Prem

    ORA-00600/ORA-07445/ORA-03113 = Oracle bug => search on Metalink and/or call Oracle support

  • ORA-3113 Error in pl/sql

    Hi,
    I am working in oracle9i and solaris 8.If i execute a package in Pl/sql it shows error as
    ora-03113 end-of-file on communication channel...
    but the same package if i executed in TOAD means it's working fine ....
    Please explain me...

    If i execute a package in Pl/sql Do you mean in SQL*Plus (as opposed to TOAD)?
    ORA-3113 is a generic error, usually meaning the client did something the server didn't like. This can often be caused by incompatibilities between the versions of the client and the database server.
    Unfortunately the generic nature of teh error makes it hard for us to give you a specific answer, Is there anything in the alert log file?
    Cheers, APC

  • Export Results ORA-00936 Error Reported

    In an attempt to extract all of a package's source code in one file as well as work in a file-oriented fashion (which other posters have commented is not well supported), I issued a select dbms_metadata.get_ddl(...) from dual. This generated the output I wanted in the worksheet results. However, the ORA-00936 error is thrown when I try to export this as text to overwrite my (checked out from source control) file. My only recourse then becomes to copy the result, open my file (outside SQL-D) and replace what's there (which does work, by the way).
    There was another post on this issue in a prior version where the error was attributed to double quotes around aliases, but I'm still getting the error (see Re: Export query results error, v. 5 / 1343

    This is a bug with how SQL Developer does it's export (not that I could find it logged on MetaLink).
    When you export a query, SQL Developer writes a wrapper select around your query to drive the export. In an example of what you are trying to do, it converts the following query (I added an alias to see if that helped, but it didn't):
    select dbms_metadata.get_ddl('PACKAGE', 'MY_PKG') my_ddl from dual;
    to (based on the trace file with sql_trace switched on):
    select * from (select from ( select dbms_metadata.get_ddl('PACKAGE', 'MY_PKG') my_ddl from dual));
    Your immediate options are to continue with your current workaround, switch to a query on DBA_SOURCE for this export, or cope with the way SQL Developer currently does it's file based development.
    As far as getting this fixed (hopefully before 1.1), you would either need to log an SR on MetaLink or hope that one of the SQL Developer team logs a bug based on this thread.

  • Import failing with ORA 3113 end of file on communication channel error

    While doing a schema level import on oracle 9.2.0.6 enterprise edition db, i get IMP 00003 with ORA 3113 error.
    The import job fails particularly at one point where it tries to create a view with around 7000 lines.
    Now I tried to create this view manually by executing the sql statement and get the same error.
    As an another exercise when i pick up just a few lines say first 10 or 15 of the view definition, the view gets created in no time.
    So, is there any limitation with Oracle as to how many lines a view can hold or buffer space or something.
    Here is the sample code:
    create or replace view uix_kana_kanji_c_evw as
    select 'EFBC90' as kana_kanji_char from dual
    union select 'EFBC91' as kana_kanji_char from dual
    union select 'EFBC92' as kana_kanji_char from dual
    union select 'EFBC93' as kana_kanji_char from dual
    union select 'EFBC94' as kana_kanji_char from dual
    union select 'EFBC95' as kana_kanji_char from dual
    union select 'EFBC96' as kana_kanji_char from dual
    union select 'EFBC97' as kana_kanji_char from dual
    union select 'EFBC98' as kana_kanji_char from dual
    union select 'EFBC99' as kana_kanji_char from dual
    union select 'EFBCA1' as kana_kanji_char from dual
    union select 'EFBCA2' as kana_kanji_char from dual
    union select 'EFBCA3' as kana_kanji_char from dual
    union select 'EFBCA4' as kana_kanji_char from dual
    union select 'EFBCA5' as kana_kanji_char from dual
    union select 'EFBCA6' as kana_kanji_char from dual
    union select 'EFBCA7' as kana_kanji_char from dual

    ORA-3113 is a generic error. The bad news is there are slightly less than a million combination of OS, platform, versions and events that might cause it to happen.
    The good news is there should be a message in the alert log whenever this occurs. If you're lucky there may be .TRC file as well (check udump directory as well as bdump). The contents of the file(s) should give you some guidance about what causes it to happen. If you still need help from us you'll need to post some concrete details for us to ponder.
    Good luck, APC

  • Analyze table + ORA-3113

    We have a process that executes weekly for analyzing tables with the option estimate statistics.
    In only one database it occurs the error ORA-03113, end of comunication channel.
    Is there solution for this problem?
    Thanks
    Angie

    The ORA-3113 error occurs when your session lose connetion ith the database for some reason. There is no single cause for this error, or at least none I was ever able to find in several attempts to solve different problems. Your only hope is intensive problem solving. A couple of possibilites to help you get started.
    If you are getting this on an analyze, the most likely reason is a corrupt data block in the datafile. This could be either at the Oracle level or at the OS level. Try to determine if it always occurs for the same object. If so, then try to analyze it manually using validate structure. If this fails then try exporting the object, re-create it and then import the data into the newly created object.
    Another possibility is that some other process is doing something that analyze cannot cope with. Check if the error occurs at the same time every time. If so, check if there are other jobs running against the database at the same time. Try rescheduling the other jobs, or the analyze to see if that solves the problem. It is also possible that an OS job could cause this even if it is not using the database (We had a backup job that would occasionally eat our server. This sometimes caused Oracle connections to time out and raise 3113 when the backup job finished.).
    Check any OS error logs available to see if anything shows up around the time of the 3113 error.
    You should also check the Oracle alert logs, and look for trace files in udump, bdump and cdump directories.
    Good Luck.
    null

  • Deleting application results in ORA-03113 error

    I'm having trouble deleting applications from my workspace. Every time I attempt to delete an application, I get an ORA-03113 error.
    It doesn't seem to matter whether or not I choose to include the Application Definition or Supporting Objects when deleting.
    If I cancel and keep trying to delete the application, the db crashes. When this happens the .trc file shows multiple memory errors and the alert log shows multiple core dumps.
    db version = *10.2.0.1*
    apex version = *3.2*
    If anyone has experience with similar issues, any suggestions would appreciated. This problem has been a real pain.
    Keith Malay
    www.sds-cg.com

    Keith,
    There are quite a few hits on Metalink for this error. You may want to go there and see if you can find a patch (of which there seems to be several) or some other method of troubleshooting this problem.
    Here is what Doc ID: 1020463.6 has to say in the introduction:
    The ORA-3113 error is a general error reported by Oracle client tools,
    which signifies that they cannot communicate with the oracle shadow
    process. As it is such a general error more information must be collected
    to help determine what has happened.
    Than note's title is "Diagnosing ORA-3113 Errors".
    Good luck,
    Don.

  • ORA-3113 while running export (first run ok, second run fails)

    Hi,
    I'm running 10g (10.1.0.2.0) on gentoo Linux.
    After a restart of the database I can do an EXP for any user without errors. But when I repeat the same command after the export I get the following error:
    . . exporting table WEB_SESSION_DATA 0 rows exported
    . exporting synonyms
    EXP-00008: ORACLE error 3113 encountered
    ORA-03113: end-of-file on communication channel
    EXP-00000: Export terminated unsuccessfully
    It's always the same error on the same task (exporting synonyms) but always just for the second and any later export, while the first one is ok.
    I read through some forums and found, that ORA-3113 is a standard error which just hides the real error. So I look into the trace files and found:
    ksedmp: internal or fatal error
    ORA-07445: exception encountered: core dump [jox_lookup_known_object()+413] [SIGSEGV] [Address not mapped to object] [0x1AD14034] [] []
    Current SQL statement for this session:
    SELECT SYNNAM, DBMS_JAVA.LONGNAME(SYNNAM), DBMS_JAVA.LONGNAME(SYNTAB), TABOWN, TABNODE, PUBLIC$, SYNOWN, SYNOWNID, TABOWNID, SYNOBJNO FROM SYS.EXU9SYN WHERE SYNOWNID = :1 ORDER BY SYNTIME
    If I call this SQL from sqlplus I get the same ORA-3113, so this seems to be the cause for the export failure.
    When I remove the DBMS_JAVA.LONGNAME calls from the statement, it runs fine. It also runs fine, when I add a "and 1=0" to the EXU9SYN view. But this will not really solve the problem, because then all synonyms don't get exported.
    I also checked all the synonyms and they are valid, the referenced tables exist and can be queried.
    Because we use JavaStoredProcedures I cannot remove the Java Features in Oracle. But I reinstalled it (rmjvm.sql and initjvm.sql) but this did not help.
    Does anyone have an idea what's happening here?
    Especially the "first run ok, second run fails" seems to be very strange, because DB objects including DBMS_JAVA should be ok, if the first export can be done. So what changes in the database during or after the first run?

    Maybe description for bug 3953108 (ORA-7445 AND ORA-3113 DURING DIRECT FULL DATABASE EXPORT OF PUBLIC SYNONYMS) is helpful.
    Werner

  • ORA-00002: error in writing to export file

    Hi All,
    I am using 32-bit windows as oracle 10g client and oracle 10g server is install on unix.
    When I execute
    c:\> exp username/password@hostname file=trupm.dmp log=trump.log
    I get ORA-00002: error in writing to export file
    I have check my OS space and found that there is 8 GB space free.
    The dump file was created with 14 GB and fail with the above error
    Pls someone put light on it.
    thanks in advance
    saz

    so far at the same location exp wrote 14 GB but now it is giving error when at the same location that is c:\ space is 8 GB free

  • Export/Import error : ORA-31609: error loading file "kualter.xsl"

    Hi ,
    I was exporting the database , I got the following error after that I found that dbms_metadata_util.load_stylesheets needs to run . Please assit me how to procced further .
    C:\Users\379164>expdp import1/import1 directory=dmp_dir dumpfile=dump.dmp full=
    Export: Release 10.2.0.1.0 - Production on Friday, 15 October, 2010 14:50:45
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    ORA-39006: internal error
    ORA-39213: Metadata processing is not available
    ====================================================================
    SQL> execute dbms_metadata_util.load_stylesheets
    BEGIN dbms_metadata_util.load_stylesheets; END;
    ERROR at line 1:
    ORA-31609: error loading file "kualter.xsl" from file system directory
    "C:\oraclexe\app\oracle\product\10.2.0\server\rdbms\xml\xsl"
    ORA-06512: at "SYS.DBMS_METADATA_UTIL", line 1793
    ORA-06512: at line 1
    Please help me on this ....
    Thanks

    Refer following MOS note (even though the error number is different in header)
    Ora-39213 Using Data Pump Export (Doc ID 402242.1)

  • Export failed, ORA-03113 and ORA-01041

    Hello,
    I'm trying to do a full export of my DB,I have installed Oracle 9i dataserver(configured in shared mode) on Windows 2k, and the following error appears me:
    . exportando acciones y objetos de procedimiento pre-esquema
    EXP-00008: se ha encontrado un error 3113 de ORACLE
    ORA-03113: fin de archivo en el canal de comunicación
    EXP-00008: se ha encontrado un error 1041 de ORACLE
    ORA-01041: error interno. No existe la extensión hostdef
    EXP-00000: La exportación no ha terminado correctamente
    I don't understand it, because I have 2 other DB instances created in the same data server and their exportation have finished correctly.
    Any idea?¿
    Thanks a lot,
    Mabel

    Hi,
    Here is the error description for error 1041:01041, 00000, "internal error. hostdef extension doesn't exist"
    // *Cause: Pointer to hstdef extension in hstdef is null.
    // *Action: Report as a bugAction is to report as a bug. you should open an iTar on Metalink.
    Regards,
    Yoann.

  • ORA-00604: error occurred at recursive SQL level 1 and ORA-30036:

    Hi Gurus,
    I am trying to shrink the table segment along with indexes.
    I am using
    alter table OWNER.TABLE shrink space cascade; syntax but after 1 hr i got the following error.
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-30036: unable to extend segment by 4 in undo tablespace 'UNDOTBS01'
    UNDO tablespace has sufficient space and undo_retention is 6Hrs. What could be the problem ?
    Or do i need to use
    alter table OWNER.TABLE shrink space; only ?
    Thanks & Regards

    Hi,
    I am doing this in testing enviornment and before this activity added 4g space to existing 50GB undo tablespace.
    No jobs are running in testing environment and the shrinking on table is of 12GB. I cann't import/export and truncate or move to different tablespaces as this has oracle advanced queue and chances are more to corrupt queues.
    Thanks

  • ORA-00604: error occured at recursive SQL level 1 ORA-12705: Cannot access

    Oracle Database 10g Express Edition Release 10.2.0.1.0 on
    OS Linux Debian 3.1_r4_stable
    SQL> select userenv('LANGUAGE') from dual;
    USERENV('LANGUAGE')
    RUSSIAN_RUSSIA.AL32UTF8
    Client OS MS Vista Ultimate EN , region=RUSSIAN.RUSSIA
    Oracle Developer suite 10
    SQL-Developer
    Version 1.1.0.23.
    NLS_LANG=RUSSIAN_RUSSIA.CL8MSWIN1251
    Oracle Developer suite 10 is working properly but when
    i am attempting a connection between Oracle 10g XE and SQL-Developer.
    Need some help to resolve this error message....
    ORA-00604: error occured at recursive SQL level 1 ORA-12705: Cannot access NLS data files or invalid enviroment specified

    Hi,
    You have to set NLS_LANG before connect to Oracle Database.
    $export NLS_LANG=.AL32UTF8

Maybe you are looking for

  • How to restore an iPad when it is rebooting all the time and cannot connect to iTunes

    Two days ago, I was updating applications. The iPad crashed during the process so I did a hard rebood. Since then, the iPad is in a perpetual reboot mode. Once in a while, I get the security keypad but as soon as my password is put, the iPad freezes

  • Configuring additional mailbox in Outlook 2011 (Mac)

    After adding the additional mailbox in Outlook 2011 (for Mac), sent items are saved either in 'Sent' folder for the main mailbox (Sender Mailbox in OWA) or in 'Sent' folder for main and additional mailboxes (Sender and From mailboxes in OWA). Option

  • Migrating from laptop to desktop

    I bought a new desktop Windows 8.1 computer that I intend to use for photo-editing. I will need to load my CS5.1 and LR4 onto the new computer, as well as migrate all my photos from my Windows 7 laptop.  I was wondering what other folders and files I

  • Weird chars at end of line in JTextArea

    I am getting these weird characters at the end of the line in JTextArea when I use setText. I am doing the foll: //Creation of JTextArea JPanel p2 = new JPanel(); // for JTextArea and video displayText = new JTextArea(15,30); JScrollPane scrollPane =

  • CD will not eject and MacBook Pro won't restart

    CD will not eject and MacBook Pro won't restart.