ORA-00600: xspggepGenPSErase03 during AW UPDATE

Hello,
While refreshing a cube we got this ora - 600 error.
ORA-37162: OLAP error
XOQ-00703: error executing OLAP DML command "(UPDATE GLOBALDWOLAP.GLOBALHEALTHDWD : ORA-37605: error during OLAP AW UPDATE
ORA-00600: internal error code, arguments: [xspggepGenPSErase03], [], [], [], [], [], [], [], [], [], [], []
We know this is an AW corruption and we tried to recreate the AW through export and import as explained in document 742375.1 in Oracle Support. However, when trying to delete cubes or dimensions from the Analytic Workspace Manager or using pl/sql code (dbms_cube.import_xml) in order to delete the workspace itself we get the same error!
Our db version is 11.2.0.2 and we are using AWM 11.2.0.2.0B standalone.
Is there any way to delete the Analytic Workspace apart from dropping the OLAP user?
We 've already posted an SR for this, but a workaround would be appreciated as this corruption occured in our production environment,
Thank you,
Vicky

Vicky,
Check Metalink Note 1078454.1.

Similar Messages

  • ORA-00600: internal error code, arguments: [17182], [0x1106559F0], [], [],

    Refresh MatView causing ORA ORA-00600: internal error code, arguments: [17182], [0x1106559F0], [], [], error.
    Database Version: 11.1.0.6, IBM AIX system
    when run: dbms_mview.refresh('mart.mv_cust_header','?') , it fails with the above error.
    Fixed few times by dropping and rebuldibng the MatView but it is not resolved. The issue is with production system.
    Any help on this will be greatly appreciated.
    Thanks,
    Junr DBA

    Thanks for everyone's help!
    As advised Oracle Support was able to find the root cause:
    Just thought would share the information.
    Solution from Oracle:
    Patch resolves issues but is not available on 11.1.0.6 on this operating system. No new patches are being generated for 11.1.0.6. Patch is available on top of 11.1.0.7 and is included in PSU patchsets starting with 11.1.0.7 PSU 1.
    Upgrade to 11.1.0.7 and then EITHER:
    Apply the one-off patch 7330434.
    OR
    Apply the latest patchset.
    Note 752137.1 : ORA-00600 [17128] or ORA-00600 [17147] During Fast Refresh Of Materialized View
    Note 7330434.8 : Bug 7330434 - Memory corruption / OERI:17147 from DBMS_MVIEW.REFRESH
    Thanks,
    Jun DBA

  • While updating a table i am getting ORA-00600 error.

    Hi all,
    While updating a table i am getting the following:
    **SQL Error: ORA-00600: internal error code, arguments: [qkebCreateConstantOpn1], [], [], [], [], [], [], [], [], [], [], []**
    **00600. 00000 - "internal error code, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s]"**
    I am not getting how to proceed on this. Please guide me.
    Thanks,
    Ritesh

    While performing some unspecified action (no DML) on an unknown table (no DDL) in an unknown version and edition of the Oracle database you had an untrapped Oracle exceptions.
    There are too many unknowns to help you beyond recommending you open an SR at MyOracleSupport.

  • ORA-00600: internal error code while using UpdateXML to update xml content

    Hi,
    I have been using the UpdateXML command to replace content of xml stored in XMLType. It was working absolutely fine.
    Below is the query:
    UPDATE temp d SET d.message_content = updateXML(d.message_content,'//*[.="Test" ]/text()','"Test123"') WHERE                          existsNode(d.message_content,'//*[.="Test"]')=1";
    But now i'm getting an exception as follows:
    ORA-00600: internal error code, arguments: [qmcxeUpdateXml:2.1], [], [], [], [], [], [], []
    The table uses a Free Test Index.
    I searched the forum and found from the given link https://forums.oracle.com/forums/thread.jspa?threadID=2352772 that corrupted Index may be the cause of this problem. I'm still clueless :(
    Can someone help me?

    Hi sprightee,
    That thread you found seems to be a different problem (Ora-600 argument is different)
    I think you have hit bug 6811908, at least if Odie is correct about your version.
    Bug says No workaround - Fixed in 11.1.0.8
    Regards
    Peter

  • Problem in UPDATE with EXTRACTVALUE : ORA-00600

    Hi all,
    I have some trouble with this update query :
    UPDATE enveloppe_message
       SET ems_date_modification = SYSDATE,
           ems_login_modification = 'pipo',
           ems_dn_emet = EXTRACTVALUE (ems_xml, '/DataPDU/Header/Message/Sender/DN', 'xmlns="urn:swift:saa:xsd:saa.2.0"'),
           ems_dn_dest = EXTRACTVALUE (ems_xml, '/DataPDU/Header/Message/Receiver/DN', 'xmlns="urn:swift:saa:xsd:saa.2.0"'),
           ems_reference_tech = EXTRACTVALUE (ems_xml, '/DataPDU/Header/Message/SenderReference', 'xmlns="urn:swift:saa:xsd:saa.2.0"')
    WHERE ems_id = 1130;I get this error message :
    ORA-00600: code d'erreur interne, arguments : [koklismem111: BFILE locator], [], [], [], [], [], [], [], [], [], [], []But if I do this :
    SELECT EXTRACTVALUE (ems_xml, '/DataPDU/Header/Message/Sender/DN', 'xmlns="urn:swift:saa:xsd:saa.2.0"') AS a,
           EXTRACTVALUE (ems_xml, '/DataPDU/Header/Message/Receiver/DN', 'xmlns="urn:swift:saa:xsd:saa.2.0"') AS b,
           EXTRACTVALUE (ems_xml, '/DataPDU/Header/Message/SenderReference', 'xmlns="urn:swift:saa:xsd:saa.2.0"') AS c
      FROM enveloppe_message
    WHERE ems_id = 1130;It's ok and I get these datas :
    a : ou=abc,ou=ghf,o=bvhdjdie,o=lkljg
    b : ou=dfg,ou=fkd,o=nbjfkkdk,o=bnfjd
    c : jkldfjsdlflsnvkllkfkfllcklqsjkckldand thus, this query become ok ????
    UPDATE enveloppe_message
       SET ems_date_modification = SYSDATE,
           ems_login_modification = 'pipo',
           ems_dn_emet = 'ou=abc,ou=ghf,o=bvhdjdie,o=lkljg',
           ems_dn_dest = 'ou=dfg,ou=fkd,o=nbjfkkdk,o=bnfjd',
           ems_reference_tech = 'jkldfjsdlflsnvkllkfkfllcklqsjkckld'
    WHERE ems_id = 1130;Does anyone have some idea ????
    Thanks.

    Thanks a lot Marco for the link on the FAQ.
    But I don't understand how to use a non default namespace... sorry!
    Finally, this query is okay :
    SELECT xmlcast(xmlquery('declare default element namespace "urn:swift:saa:xsd:saa.2.0"; $p/DataPDU/Header/Message/Sender/DN' passing ems_xml as "p" returning content) as varchar2(4000)) AS a,
           xmlcast(xmlquery('declare default element namespace "urn:swift:saa:xsd:saa.2.0"; $p/DataPDU/Header/Message/Receiver/DN' passing ems_xml as "p" returning content) as varchar2(4000)) AS b,
           xmlcast(xmlquery('declare default element namespace "urn:swift:saa:xsd:saa.2.0"; $p/DataPDU/Header/Message/SenderReference' passing ems_xml as "p" returning content) as varchar2(4000)) AS c
      FROM enveloppe_message
    WHERE ems_id = 1130;But this one, not !
    UPDATE enveloppe_message
       SET ems_date_modification = SYSDATE,
           ems_login_modification = 'pipo',
           ems_dn_emet = xmlcast(xmlquery('declare default element namespace "urn:swift:saa:xsd:saa.2.0"; $p/DataPDU/Header/Message/Sender/DN' passing ems_xml as "p" returning content) as varchar2(4000)),
           ems_dn_dest = xmlcast(xmlquery('declare default element namespace "urn:swift:saa:xsd:saa.2.0"; $p/DataPDU/Header/Message/Receiver/DN' passing ems_xml as "p" returning content) as varchar2(4000)),
           ems_reference_tech = xmlcast(xmlquery('declare default element namespace "urn:swift:saa:xsd:saa.2.0"; $p/DataPDU/Header/Message/SenderReference' passing ems_xml as "p" returning content) as varchar2(4000))
    WHERE ems_id = 1130;I get the same error :
    ORA-00600: code d'erreur interne, arguments : [koklismem2: insufficient locator len], [0], [86], [], [], [], [], [], [], [], [], []Maybe these optimizations don't solve my initial problem !?

  • ORA-00600 on update

    Hi all,
    I´m trying to do a update, but I got the error:
    UPDATE tbl_trip SET code_vechicle = UPPER(code_vechicle);
    UPDATE tbl_trip SET code_vechicle = UPPER(code_vechicle)
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [4512], [], [], [], [], [], [], []I´m using the oracle with Linux red hat. Follows the 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 - ProductionIs this a bug in this version?
    How can I solve this?
    thank you very much!!!!

    Go here for the oracle 7445/600 troubleshooter and follow the instructions to fill in the blanks. If this does not help, open an iTAR.
    https://metalink.oracle.com/metalink/plsql/f?p=130:14:12090908377143231594::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,153788.1,1,0,1,helvetica

  • ORA-00600: internal error code after Linux update

    Hi,
    I just updated openSuSE from version 10.2 to 11.0 using the online repositoties. It seemed to keep all of my Oracle 10.2 directories and files intact. The Listener starts just fine, but the DB starts and then disconnects...
    SQL*Plus: Release 10.2.0.1.0 - Production on Mi Sep 17 16:41:12 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> ORA-00600: internal error code, arguments: keltnfy-ldmInit, 46, 1], [, ], [, ], [
    SQL> Disconnected
    I've checked /etc/hosts. It contains the exact same info as my archived copy (that I saved before updating Linux). My /etc/profile.local file is also exactly the same; all pertinent variables are exported. So can someone please give me some other reasons for why the DB would disconnect?
    Thanks for your replies!

    You can verify if your system can lookup its hostname using ping:
    [root@cfengine ~]# hostname
    cfengine
    [root@cfengine ~]# ping -c 1 cfengine
    PING cfengine (10.0.0.1) 56(84) bytes of data.
    64 bytes from cfengine (10.0.0.1): icmp_seq=1 ttl=64 time=0.026 ms
    --- cfengine ping statistics ---
    1 packets transmitted, 1 received, 0% packet loss, time 0ms
    rtt min/avg/max/mdev = 0.026/0.026/0.026/0.000 ms
    Above example shows a hostname (cfengine) which could be resolved; a hostname is used and the ping utility was able to resolve the ip address (10.0.0.1). Please mind that the actual function of the ping utility is to test host connectivity using the ICMP protocol, but because ping needs to resolve the ip address of a hostname to do so, it can be used to see if a hostname exists. There are much other methods to do so.
    [root@cfengine ~]# ping -c 1 nonexistent
    ping: unkown host nonexistent
    Above example shows a hostname (nonexistent) which could not be resolved.
    If a hostname can not be resolved, the hostname should be made resolvable. The most easy way to do so is by adding the ip address and hostname to /etc/hosts:
    [root@cfengine ~]# ifconfig | grep inet
    inet addr:10.0.0.1 Bcast:10.0.0.255 Mask:255.255.255.0
    inet6 addr: fe08::a00:27ff:fe40:ec86/64 Scope:Link
    inet addr:127.0.0.1 Mast:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    The ip address, 10.0.0.1 in my case. Next, put this ip address and the hostname in /etc/hosts:
    [root@cfengine ~] echo "10.0.0.1 cfengine" >> /etc/hosts
    Try ping again to see if the hostname can be resolved:
    [root@cfengine ~]# ping -c 1 cfengine
    PING cfengine (10.0.0.1) 56(84) bytes of data.
    64 bytes from cfengine (10.0.0.1): icmp_seq=1 ttl=64 time=0.026 ms
    --- cfengine ping statistics ---
    1 packets transmitted, 1 received, 0% packet loss, time 0ms
    rtt min/avg/max/mdev = 0.026/0.026/0.026/0.000 ms

  • ORA-00600 during the OracleXE instalation

    After the instalation I tried to go on http://127.0.0.1/apex but I got error.Than I found in file xe_ora_600.trc error that you can see below. I examined some directories and found in E:\oraclexe\oradata\XE\ only 2 files "undo.dbf" and "users.dbf", no "system.dbf" and "contral.dbf". I tried reinstall OracleXE with local English-US but this didn't work. I got the same error.
    *** ACTION NAME:(0000007 STARTED120) 2006-06-06 16:36:05.984
    *** MODULE NAME:(restore full datafile) 2006-06-06 16:36:05.984
    *** SERVICE NAME:() 2006-06-06 16:36:05.984
    *** SESSION ID:(38.1) 2006-06-06 16:36:05.984
    *** 2006-06-06 16:36:05.984
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [krbrckhr_fail], [E:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\CONFIG\SEEDDB\EXPRESS.DFB], [3], [128], [3], [8323], [], []
    Current SQL statement for this session:
    declare
    omfname varchar2(512) := NULL;
    done boolean;
    begin
    dbms_output.put_line(' ');
    dbms_output.put_line(' Allocating device.... ');
    dbms_output.put_line(' Specifying datafiles... ');
    :devicename := dbms_backup_restore.deviceAllocate;
    dbms_output.put_line(' Specifing datafiles... ');
    dbms_backup_restore.restoreSetDataFile;
    dbms_backup_restore.restoreDataFileTo(1, 'E:\oraclexe\oradata\XE\system.dbf', 0, 'SYSTEM');
    dbms_backup_restore.restoreDataFileTo(2, 'E:\oraclexe\oradata\XE\undo.dbf', 0, 'UNDOTBS1');
    dbms_backup_restore.restoreDataFileTo(3, 'E:\oraclexe\\oradata\XE\sysaux.dbf', 0, 'SYSAUX');
    dbms_backup_restore.restoreDataFileTo(4, 'E:\oraclexe\oradata\XE\users.dbf', 0, 'USERS');
    dbms_output.put_line(' Restoring ... ');
    dbms_backup_restore.restoreBackupPiece('E:\oraclexe\app\oracle\product\10.2.0\server\config\seeddb\EXPRESS.dfb', done);
    if done then
    dbms_output.put_line(' Restore done.');
    else
    dbms_output.put_line(' ORA-XXXX: Restore failed ');
    end if;
    dbms_backup_restore.deviceDeallocate;
    end;

    Oracle XE has it's own forum - to register and discuss XE problems with XE experts use URL http://www.oracle.com/technology/xe/registration
    Once you have registered, you can sign in to the forums and voila - the link to the XE forum is there. But you do have to sign in.

  • Error ORA-00600 internal error code during compilation of forms 6i

    Hi Dears:
    I have recently migrated my Oracle 9i database to Oracle 10g(10.2.0.2). Now when I recompile any of my 6i forms, the error occurs as below:
    ORA-00600 internal error code, arguments: [17069], [60658452], [ ], [ ], [ ], [ ], [ ],
    NOTE:
    1. queries run fine in SQL Plus.
    2. Already compiled forms (fmx) run fine.
    Please help me to resolve the problem.
    Inayatqazi

    Hi
    u should specify what u were trying to do while getting this object.
    u need to install the latest Forms 6i path 17 to fit for the new db 10g.
    if u have access to MetaLink there u can down load it easily...
    if u have a db link then i suggest creating a view or public synonym and give the user all the privilages require on the new db connected to form 6i while connecting or accessing to previous user with old db.
    Hope this help
    Regards,
    Amatu Allah.

  • Error ORA-00600 during dropping user

    i'm trying to drop a user with:
    drop user myuser cascade
    but i receive this error:
    *ORA-00600: internal error code, arguments: [kzdukl3], [24], [], [], [],[], [], []*
    do you know what kind of error is it?

    Hi..
    Refer to METALINK Doc ID:      Note:435230.1.It says this error occurs if validation fails for any objects that need to be dropped belonging to this
    user.
    Regards,
    Anand

  • ORA-00600: internal error code, arguments: [25027], [8], [1], [], [], [], [

    Hi
    I was trying to delete a row in one of the tables in the database and i got the following error:
    ORA-00600: internal error code, arguments: [25027], [8], [1], [], [], [], [], []Also i got a message in OEM as follows:
    ORA-error stack (00600[25027]) logged in /var/oracle/Storage1/mydb/logs/bdump/alert_snos.logand when i looked at this log file:
    Thu Jun 11 22:19:40 2009
    Errors in file /var/oracle/Storage1/mydb/logs/udump/snos_ora_23891.trc:
    ORA-00600: internal error code, arguments: [25027], [8], [1], [], [], [], [], []
    Thu Jun 11 22:20:09 2009
    Errors in file /var/oracle/Storage1/mydb/logs/udump/snos_ora_23855.trc:
    ORA-00600: internal error code, arguments: [25027], [8], [1], [], [], [], [], []
    Thu Jun 11 22:20:48 2009
    Errors in file /var/oracle/Storage1/mydb/logs/udump/snos_ora_23855.trc:
    ORA-00600: internal error code, arguments: [25027], [8], [1], [], [], [], [], []
    Thu Jun 11 22:48:38 2009 and when i opened the trc files i couldn't figure out whats going on!
    The delete statment was so simple:
    delete from SFLSRCSYSTEMS
    where id = 1I still want to delete that row and don't know what to do.. Please help
    Swaid

    Subject:      ORA-600 [25027]
         Doc ID:      284433.1      Type:      REFERENCE
         Modified Date :      30-APR-2009      Status:      PUBLISHED
    Note: For additional ORA-600 related information please read Note 146580.1
    PURPOSE:
    This article represents a partially published OERI note.
    It has been published because the ORA-600 error has been
    reported in at least one confirmed bug.
    Therefore, the SUGGESTIONS section of this article may help
    in terms of identifying the cause of the error.
    This specific ORA-600 error may be considered for full publication
    at a later date. If/when fully published, additional information
    will be available here on the nature of this error.
    SUGGESTIONS:
    If the Known Issues section below does not help in terms of identifying
    a solution, please submit the trace files and alert.log to Oracle
    Support Services for further analysis.
    Known Issues:
    Bug# 7263842 * See Note 7263842.8
    * This bug is alerted in Note 784633.1
    ORA-955 during CTAS / OERI [ktsircinfo_num1] / dictionary inconsistency for PARTITIONED Tables
    Fixed: 10.2.0.5, 11.2, 10.2.0.4.P19
    Bug# 7190270 * See Note 7190270.8
    * This bug is alerted in Note 784633.1
    Various ORA-600 errors / dictionary inconsistency from CTAS / DROP
    Fixed: 10.2.0.5, 10.2.0.4.P09
    Bug# 6666915 See Note 6666915.8
    OERI[25027] / dictionary corruption from concurrent partition DDL
    Fixed: 10.2.0.5, 11.1.0.7, 11.2
    Bug# 4925342 See Note 4925342.8
    OERI [25027] / OERI [25012] on IOT analyze estimate statistics
    Fixed: 9.2.0.8, 10.2.0.3, 11.1.0.6
    Bug# 4310371 See Note 4310371.8
    OERI [25027] from concurrent startup / shutdown in RAC
    Fixed: 9.2.0.8
    Bug# 4177651 See Note 4177651.8
    Row migration within a MERGE may OERI[25027]
    Fixed: 10.2.0.1
    Bug# 4020195 See Note 4020195.8
    OERI 25027 can occur in RAC accessing transported tablespace
    Fixed: 10.1.0.5, 10.2.0.1
    Bug# 3963135 See Note 3963135.8
    OERI[kcbgcur_3] / OERI:25027 during bitmap index updates
    Fixed: 10.1.0.5, 10.2.0.1
    Bug# 3829900 See Note 3829900.8
    OERI[25027] possible accessing index in 10g
    Fixed: 10.1.0.4, 10.2.0.1
    Bug# 2942185 See Note 2942185.8
    Corruption occurs on direct path load into IOT with ADDED columns
    Fixed: 9.2.0.6, 10.1.0.4, 10.2.0.1
    Bug# 2926182 See Note 2926182.8
    OERI[25027] / ORA-22922 accessing LOB columns in IOT in AFTER UPDATE trigger
    Fixed: 9.2.0.5, 10.1.0.2

  • ORA-00600 while starting the SOA suite soa_server1

    Hi we are getting following error on soa weblogic server log soa_server1 as well as in the database alert log when ever we do startup of the soa_server1. This is consistent during every startup. But not repeating in the log after that.
    Any one seen this error before?
    SOA Platform is running and accepting requests
    <Aug 7, 2012 4:48:35 AM UTC> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM DUAL" set up for pool "SOADataSource-rac0" failed with exception: "oracle.jdbc.xa.OracleXAException".>
    <Aug 7, 2012 4:48:35 AM UTC> <Error> <oracle.soa.bpel.engine.cluster> <BEA-000000> <Failed to execute heartbeat update
    java.sql.SQLException: ORA-00600: internal error code, arguments: [qespcNpSC:objnotfound], [76582], [], [], [], [], [], [], [], [], [], []
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
    SOA Platform is running and accepting requests
    <Aug 8, 2012 4:07:06 PM UTC> <Error> <JDBC> <BEA-001112> <Test "SELECT 1 FROM DUAL" set up for pool "SOADataSource-rac0" failed with exception: "oracle.jdbc.xa.OracleXAException".>
    <Aug 8, 2012 4:07:06 PM UTC> <Error> <oracle.soa.bpel.engine.cluster> <BEA-000000> <Failed to execute heartbeat update
    java.sql.SQLException: ORA-00600: internal error code, arguments: [qesmaImcErrorProc:curinv], [], [], [], [], [], [], [], [], [], [], []
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
    at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1115)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1488)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3769)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3904)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1512)
    at weblogic.jdbc.wrapper.PreparedStatement.executeUpdate(PreparedStatement.java:172)
    at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeDirectNoSele

    ORA-00600 it is an oracle error... You should go and check with your DBA...
    Have you seen this?
    http://www.orafaq.com/wiki/ORA-00600
    And this?
    http://www.dbametrix.com/ora-00600-errors.html
    Cheers,
    Vlad
    It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts)
    https://forums.oracle.com/forums/ann.jspa?annID=893

  • Database crashed with error ORA-00600: internal error code, arguments

    Hi,
    Yesterday night one of our database was crashed and when I see the altert log file I found below errors
    Oracle 10g, AIX 5.3 platform
    Killing background process QMNC
    Tue Oct 14 20:22:07
    Errors in file /oracle/SID/saptrace/usertrace/sid_ora_6492356.trc:
    ORA-00600: internal error code, arguments: [ksb_shut_detached_process3], [QMNC], [], [], [], [], [], []
    Tue Oct 14 21:02:27 2008
    Adjusting the default value of parameter parallel_max_servers
    from 320 to 65 due to the value of parameter processes (80).
    trace file contains below errors
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [ksb_shut_detached_process3], [QMNC], [], [], [], [], [], []
          Call Stack Trace
    calling              call     entry                argument values in hex
    location             type     point                (? means dubious value)
    ksedst+001c          bl       ksedst1              700000010008000 ?
                                                       700000069243690 ?
    ksedmp+0290          bl       ksedst               104325D68 ?
    ksfdmp+0018          bl       03F599D0
    Anyone has any idea regarding this error? 
    Now the database is up, but would like to know why this has happened.
    Thank you
    KVR
    Edited by: KVR on Oct 15, 2008 10:03 AM

    Theres plenty of notes about ORA-00600... all depending on what is you Oracle version and what was running when the crash happen.
    If it was during the night maybe the system was updating statistics then you can check SAP Note 365421 ORA-00600 [1113] when generating statistics
    Regards
    Juan

  • Oracle internal error ORA-00600

    hi,
    I have 2 schema which a have a 2 triggers that copy data between 2 tables
    schema1.tablea and schema2.tableb. Both table structures are similar with a primary key of pcode.
    I am running into the following error.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    SQL> update abc set pcode=pcode;
    update abc set pcode=pcode
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [kohdtf048], [], [], [], [], [], [],
    ORA-04088: error during execution of trigger
    'schema.abc_TRG'
    ORA-06512: at "schema.xyz", line 78
    ORA-04088: error during execution of trigger
    'schema.xyz'
    could some one please help.
    I have already tried analyzing tables, rebuilding indexes, bumping up the dbf files
    but it has not help.
    Could some one help out

    Refer to Note:139116.1 and open an SR.

  • ORA-00600 in AQ background job

    Hi all,
    I am getting an ORA-00600 in AQ background job responsible for dequeuing messages.
    The trace output is as follows:
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [kwqidjqp0], [], [], [], [], [], [], []
    Current SQL statement for this session:
    DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN := FALSE; BEGIN sys.dbms_aqadm_sys.register_driver(); :mydate := next_date; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    6713D69C 7249 package body SYS.DBMS_AQADM_SYS
    6713D69C 7280 package body SYS.DBMS_AQADM_SYS
    66EB50B4 1 anonymous block
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    I have job_queue_processes set to 4 and aq_tm_processes set to 2.
    Has anyone seen this? Please help.
    Thanks,
    Atul

    May be a bit late to help the original posters, but just for reference, this looks very similar to the following described in Metalink:
    Bug 3033868 OERI[kwqidjqp0] from DBMS_AQADM_SYS.REGISTER_DRIVER
    This note gives a brief overview of bug 3033868.
    The content was last updated on: 20-JAN-2004
    Affects:
    Range of versions believed to be affected     Versions < 10.1.0.2
    Versions confirmed as being affected     
    * 9.0.1.4
    * 9.2.0.4
    Platforms affected     Generic (all / most platforms affected)
    Fixed:
    This issue is fixed in     
    * 9.2.0.5 (Server Patch Set)
    * 10.1.0.2 (Base Release)
    Edited by: Anthony Maslowski on Feb 5, 2010 1:26 PM

Maybe you are looking for