Ora-00600: internal error on 11g database in windows 2007 environment

Hello , i have these problems please help me to solve it.
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
C:\Windows\system32>emctl status dbconsole
Environment variable ORACLE_SID not defined. Please define it.
C:\Windows\system32>set ORACLE_SID=testsid
C:\Windows\system32>emctl status dbconsole
Oracle Enterprise Manager 11g Database Control Release 11.1.0.6.0
Copyright (c) 1996, 2007 Oracle Corporation.  All rights reserved.
https://local:1158/em/console/aboutApplication
Oracle Enterprise Manager 11g is not running.
Logs are generated in directory C:\app\23333941\product\11.1.0\db_3/local_testsid/sysman/log
C:\Windows\system32>sqlplus sys/@**** as sysdba
SQL*Plus: Release 11.1.0.6.0 - Production on Fri Jul 5 09:27:37 2013
Copyright (c) 1982, 2007, Oracle.  All rights reserved.
SQL*Plus: Release 11.1.0.6.0 - Production
Copyright (c) 1982, 2007, Oracle.  All rights reserved.
Use SQL*Plus to execute SQL, PL/SQL and SQL*Plus statements.
Usage 1: sqlplus -H | -V
    -H             Displays the SQL*Plus version and the
                   usage help.
    -V             Displays the SQL*Plus version.
Usage 2: sqlplus [ [<option>] [<logon>] [<start>] ]
  <option> is: [-C <version>] [-L] [-M "<options>"] [-R <level>] [-S]
    -C <version>   Sets the compatibility of affected commands to the
                   version specified by <version>.  The version has
                   the form "x.y[.z]".  For example, -C 10.2.0
    -F             Enables the failover mode for a RAC environment.
    -L             Attempts to log on just once, instead of
                   reprompting on error.
    -M "<options>" Sets automatic HTML markup of output.  The options
                   have the form:
                   HTML [ON|OFF] [HEAD text] [BODY text] [TABLE text]
                   [ENTMAP {ON|OFF}] [SPOOL {ON|OFF}] [PRE[FORMAT] {ON|OFF}]
    -R <level>     Sets restricted mode to disable SQL*Plus commands
                   that interact with the file system.  The level can
                   be 1, 2 or 3.  The most restrictive is -R 3 which
                   disables all user commands interacting with the
                   file system.
    -S             Sets silent mode which suppresses the display of
                   the SQL*Plus banner, prompts, and echoing of
                   commands.
  <logon> is: (<username>[/<password>][@<connect_identifier>] | /)
              [AS SYSDBA | AS SYSOPER | AS SYSASM] | /NOLOG | [EDITION=value]
    Specifies the database account username, password and connect
    identifier for the database connection.  Without a connect
    identifier, SQL*Plus connects to the default database.
    The AS SYSDBA, AS SYSOPER and AS SYSASM  options are database
    administration privileges.
    <connect_identifier> can be in the form of Net Service Name
    or Easy Connect.
      @[<net_service_name> | [//]Host[:Port]/<service_name>]
        <net_service_name> is a simple name for a service that resolves
        to a connect descriptor.
        Example: Connect to database using Net Service Name and the
                 database net service name is ORCL.
           sqlplus myusername/mypassword@ORCL
        Host specifies the host name or IP address of the database
        server computer.
        Port specifies the listening port on the database server.
        <service_name> specifies the service name of the database you
        want to access.
        Example: Connect to database using Easy Connect and the
                 Service name is ORCL.
           sqlplus myusername/mypassword@Host/ORCL
    The /NOLOG option starts SQL*Plus without connecting to a
    database.
    The EDITION specifies the value for Application
    Edition
  <start> is: @<URL>|<filename>[.<ext>] [<parameter> ...]
    Runs the specified SQL*Plus script from a web server (URL) or the
    local file system (filename.ext) with specified parameters that
    will be assigned to substitution variables in the script.
When SQL*Plus starts, and after CONNECT commands, the site profile
(e.g. $ORACLE_HOME/sqlplus/admin/glogin.sql) and the user profile
(e.g. login.sql in the working directory) are run.  The files may
contain SQL*Plus commands.
Refer to the SQL*Plus User's Guide and Reference for more information.
C:\Windows\system32>sqlplus sys/1118@testsid as sysdba
SQL*Plus: Release 11.1.0.6.0 - Production on Fri Jul 5 09:29:03 2013
Copyright (c) 1982, 2007, Oracle.  All rights reserved.
ERROR:
ORA-12154: TNS:could not resolve the connect identifier specified
Enter user-name: sysdba
Enter password:
ERROR:
ORA-01033: ORACLE initialization or shutdown in progress
Process ID: 0
Session ID: 0 Serial number: 0
Enter user-name: sys
Enter password:
ERROR:
ORA-01033: ORACLE initialization or shutdown in progress
Process ID: 0
Session ID: 0 Serial number: 0
SP2-0157: unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus
C:\Windows\system32>sqlplus/nolog
SQL*Plus: Release 11.1.0.6.0 - Production on Fri Jul 5 09:32:59 2013
Copyright (c) 1982, 2007, Oracle.  All rights reserved.
SQL> connect/as sysdba
Connected.
SQL> create table test(id number, id1 number);
create table test(id number, id1 number)
ERROR at line 1:
ORA-01109: database not open
SQL> select status from v$instance;
STATUS
MOUNTED
SQL> alter database open;
ERROR at line 1:
ORA-00600: internal error code, arguments: [kcrfr_update_nab_2], [0x51434A54],
[2], [], [], [], [], []
SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
C:\Windows\system32>startup mount
'startup' is not recognized as an internal or external command,
operable program or batch file.
C:\Windows\system32>sqlplus/nolog
SQL*Plus: Release 11.1.0.6.0 - Production on Fri Jul 5 10:05:42 2013
Copyright (c) 1982, 2007, Oracle.  All rights reserved.
SQL> connect/as sysdba
Connected.
SQL> startup mount;
ORA-01081: cannot start already-running ORACLE - shut it down first
SQL> recover database;
Media recovery complete.
SQL> select GROUP#,SEQUENCE#,ARCHIVED,STATUS from v$log order by SEQUENCE#;
    GROUP#  SEQUENCE# ARC STATUS
         2        539 NO  INACTIVE
         3        540 NO  ACTIVE
         1        541 NO  CURRENT
SQL> recover database;
ORA-00283: recovery session canceled due to errors
ORA-00264: no recovery required
SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
C:\Windows\system32>sqlplus/nolog
SQL*Plus: Release 11.1.0.6.0 - Production on Fri Jul 5 10:17:10 2013
Copyright (c) 1982, 2007, Oracle.  All rights reserved.
SQL> connect / as sysdba
Connected.
SQL> startup mount
ORA-01081: cannot start already-running ORACLE - shut it down first
SQL> shutdown immediate;
ORA-01109: database not open
Database dismounted.
ORACLE instance shut down.
SQL> startup;
ORACLE instance started.
Total System Global Area  313860096 bytes
Fixed Size                  1332892 bytes
Variable Size             276826468 bytes
Database Buffers           29360128 bytes
Redo Buffers                6340608 bytes
Database mounted.
Database opened.
SQL> recover database;
ORA-00283: recovery session canceled due to errors
ORA-01124: cannot recover data file 1 - file is in use or recovery
ORA-01110: data file 1:
'C:\APP\23333941\ORADATA\TEST\DATAFILE\O1_MF_SYSTEM_8XB8TY3S_.DBF'
SQL> select GROUP#,SEQUENCE#,ARCHIVED,STATUS from v$log order by SEQUENCE#;
    GROUP#  SEQUENCE# ARC STATUS
         3        540 NO  INACTIVE
         1        541 NO  INACTIVE
         2        542 NO  CURRENT
SQL> restore database;
SP2-0734: unknown command beginning "restore da..." - rest of line ignored.
SQL> recover database;
ORA-00283: recovery session canceled due to errors
ORA-01124: cannot recover data file 1 - file is in use or recovery
ORA-01110: data file 1:
'C:\APP\23333941\ORADATA\TEST\DATAFILE\O1_MF_SYSTEM_8XB8TY3S_.DBF'
SQL>
Thanks with regards Ganaa;

What happened prior that resulted in the disaster scenario that you posted/
When was the last time the DB opened with out error?
What changed since then?

Similar Messages

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

    hello,
    I have a problem with error:ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [k2srec: should be another instan
    I recently make any change .this error  alwayls occured in some time.
    part tracer file:
    /home/oracle/admin/oradb/udump/oradb1_ora_1032272.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP and Data Mining options
    ORACLE_HOME = /home/oracle/db10g
    System name:     AIX
    Node name:     dbserver1
    Release:     3
    Version:     5
    Machine:     00CDBFBC4C00
    Instance name: oradb1
    Redo thread mounted by this instance: 1
    Oracle process number: 56
    Unix process pid: 1032272, image: oracleoradb1@dbserver1
    *** SERVICE NAME:(oradb) 2010-04-30 07:36:04.290
    *** SESSION ID:(800.16685) 2010-04-30 07:36:04.290
    *** 2010-04-30 07:36:04.289
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [k2srec: should be another instan], [1], [], [], [], [], [], []
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    ksedst+001c bl ksedst1 FFFFFFFFFFF9600 ? 000000000 ?
    ksedmp+0290 bl ksedst 1047C9C30 ?
    ksfdmp+0018 bl 03F535A4
    kgerinv+00dc bl _ptrgl              
    kgeasnmierr+0040 bl kgerinv 042420820 ? 000000000 ?
    FFFFFFFFFFF9A50 ? 000000000 ?
    70000004FBA68F0 ?
    k2srec+0360 bl 01FC219C
    kpotxrec+0058 bl k2srec FFFFFFFFFFFA150 ? 0105769C8 ?
    FFFFFFFFFFFA090 ?
    FFFFFFFFFFFBA18 ? 0FFFFA130 ?
    kpotxen+0914 bl kpotxrec 1048F2A8C ? 11015A658 ?
    700000010008000 ?
    opiodr+0adc bl _ptrgl              
    ttcpip+1004 bl _ptrgl              
    opitsk+1000 bl ttcpip 11015E550 ? 000000000 ?
    000000001 ? 000000000 ?
    001004000 ? 000000030 ?
    000000000 ? 000000030 ?
    opiino+0990 bl opitsk 000000000 ? 000000000 ?
    opiodr+0adc bl _ptrgl              
    opidrv+0474 bl opiodr 3C103BA990 ? 4103BC2B0 ?
    FFFFFFFFFFFF410 ? 0103BC6D8 ?
    sou2o+0090 bl opidrv 3C023373FC ? 400000020 ?
    FFFFFFFFFFFF410 ?
    opimai_real+01bc bl 01FC0DF4
    main+0098 bl opimai_real 000000000 ? 000000000 ?
    __start+0090 bl main 000000000 ? 000000000 ?
    --------------------- Binary Stack Dump ---------------------
    ========== FRAME [1] (ksedst+001c -> ksedst1) ==========
    Dump of memory from 0x0FFFFFFFFFFF92D0 to 0x0FFFFFFFFFFF9340
    FFFFFFFFFFF92D0 0FFFFFFF FFFF9340 42A42220 048F2A98 [.......@B." ..*.]
    FFFFFFFFFFF92E0 00000001 000D6520 00000000 00000000 [......e ........]
    FFFFFFFFFFF92F0 00000000 00000000 00000000 00000001 [................]
    FFFFFFFFFFF9300 0FFFFFFF FFFF9600 00000000 00000000 [................]
    FFFFFFFFFFF9310 00000000 10001048 00000000 00000001 [.......H........]
    FFFFFFFFFFF9320 00000000 00000000 00000000 00000003 [................]
    FFFFFFFFFFF9330 00000000 00000000 0FFFFFFF FFFF9340 [...............@]
    ========== FRAME [2] (ksedmp+0290 -> ksedst) ==========
    Dump of memory from 0x0FFFFFFFFFFF9340 to 0x0FFFFFFFFFFF9740
    FFFFFFFFFFF9340 0FFFFFFF FFFF9760 28A42844 FFFFA150 [.......`(.(D...P]
    FFFFFFFFFFF9350 00000001 000D6D54 00000000 41144844 [......mT....A.HD]
    FFFFFFFFFFF9360 00000000 41144844 0FFFFFFF FFFF8CFE [....A.HD........]
    FFFFFFFFFFF9370 00000001 047C9C30 00000000 00000000 [.....|.0........]
    FFFFFFFFFFF9380 00000001 10395030 80000000 0000F0B2 [.....9P0........]
    FFFFFFFFFFF9390 00000000 00000000 00000000 0000314A [..............1J]
    FFFFFFFFFFF93A0 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF93B0 00000000 00000001 00000000 00000001 [................]
    FFFFFFFFFFF93C0 00000000 00000000 00000000 00000000 [................]
    Repeat 1 times
    FFFFFFFFFFF93E0 0FFFFFFF FFFF9430 00FFFFFF FFFF9458 [.......0.......X]
    FFFFFFFFFFF93F0 00000000 00000001 00000001 048F2A98 [..............*.]
    FFFFFFFFFFF9400 00000000 00000001 00000000 048F2A98 [..............*.]
    FFFFFFFFFFF9410 00000000 00000000 00000000 00000000 [................]
    Repeat 1 times
    FFFFFFFFFFF9430 00000000 42420820 0FFFFFFF FFFF95E8 [....BB. ........]
    FFFFFFFFFFF9440 00000001 04CCB9B8 00000000 00000000 [................]
    FFFFFFFFFFF9450 00000000 00000000 00000000 44242082 [............D$ .]
    FFFFFFFFFFF9460 00000000 000007DB 00000001 047BE308 [.............{..]
    FFFFFFFFFFF9470 00000000 00000000 00000000 256C6C75 [............%llu]
    FFFFFFFFFFF9480 00000000 00000000 00000000 00000002 [................]
    FFFFFFFFFFF9490 00000000 00000004 0FFFFFFF FFFF9950 [...............P]
    FFFFFFFFFFF94A0 00000000 00000001 00000001 102B14B1 [.............+..]
    FFFFFFFFFFF94B0 00000000 000007DB 00000000 00000000 [................]
    FFFFFFFFFFF94C0 00000001 102B0D88 00000000 00000001 [.....+..........]
    FFFFFFFFFFF94D0 00000000 00000000 00000000 00000000 [................]
    Repeat 1 times
    FFFFFFFFFFF94F0 0FFFFFFF FFFF95C0 28442048 4F16C444 [........(D HO..D]
    FFFFFFFFFFF9500 09000000 0003565C 00000000 00000000 [......V\........]
    FFFFFFFFFFF9510 00000000 00000004 07000000 4F16C3B8 [............O...]
    FFFFFFFFFFF9520 00000002 00000002 00000000 000010E4 [................]
    FFFFFFFFFFF9530 00000000 40002D91 00000000 0000002A [[email protected]........*]
    FFFFFFFFFFF9540 00000000 00000030 0000000A 0000000D [.......0........]
    FFFFFFFFFFF9550 00000012 0000001A 00000020 00000021 [........... ...!]
    FFFFFFFFFFF9560 0FFFFFFF FFFF963D 0FFFFFFF FFFF963C [.......=.......<]
    FFFFFFFFFFF9570 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9580 00000000 00000000 7FFFFFFE 00000002 [................]
    FFFFFFFFFFF9590 00000000 01020D78 00000001 102B0D78 [.......x.....+.x]
    FFFFFFFFFFF95A0 00000000 00000004 00000001 102B0D78 [.............+.x]
    FFFFFFFFFFF95B0 00000000 00000000 00000001 102B0D78 [.............+.x]
    FFFFFFFFFFF95C0 0FFFFFFF FFFF96F0 44A44B42 00000028 [........D.KB...(]
    FFFFFFFFFFF95D0 00000001 0001ED24 00000000 00000000 [.......$........]
    FFFFFFFFFFF95E0 0FFFFFFF FFFF97C0 00000001 10366698 [.............6f.]
    FFFFFFFFFFF95F0 0FFFFFFF FFFF963C 0FFFFFFF FFFF9634 [.......<.......4]
    FFFFFFFFFFF9600 00000000 00000001 0FFFFFFF FFFF9650 [...............P]
    FFFFFFFFFFF9610 00000000 73686F75 00000000 6C642062 [....shou....ld b]
    FFFFFFFFFFF9620 00000000 6520616E 00000000 6F746865 [....e an....othe]
    FFFFFFFFFFF9630 00000001 256C6C75 00000000 31000000 [....%llu....1...]
    FFFFFFFFFFF9640 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9650 00FFFFFF FFFFBA20 00000000 00000001 [....... ........]
    FFFFFFFFFFF9660 00000001 048F2A98 00000001 048F2A8C [......*.......*.]
    FFFFFFFFFFF9670 00000000 00000080 0FFFFFFF FFFFBA20 [............... ]
    FFFFFFFFFFF9680 00000000 00000001 00000001 048F2A98 [..............*.]
    FFFFFFFFFFF9690 00000001 048F2A8C 00000001 102E5600 [......*.......V.]
    FFFFFFFFFFF96A0 00000000 42420820 00000000 00000000 [....BB. ........]
    FFFFFFFFFFF96B0 00000001 102B0D88 00000000 00000000 [.....+..........]
    FFFFFFFFFFF96C0 00000001 102B0D88 00000000 00000258 [.....+.........X]
    FFFFFFFFFFF96D0 0FFFFFFF FFFF9940 00000001 10576750 [[email protected]]
    FFFFFFFFFFF96E0 00000000 00000001 00000001 102B0D78 [.............+.x]
    FFFFFFFFFFF96F0 0FFFFFFF FFFF97D0 48A42088 00000000 [........H. .....]
    FFFFFFFFFFF9700 00000001 0001F01C 00000000 00000000 [................]
    FFFFFFFFFFF9710 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9720 0FFFFFFF FFFF9A50 00000000 00000000 [.......P........]
    FFFFFFFFFFF9730 07000000 4FBA68F0 0FFFFFFF FFFFA150 [....O.h........P]
    ========== FRAME [3] (ksfdmp+0018 -> 03F535A4) ==========
    Dump of memory from 0x0FFFFFFFFFFF9760 to 0x0FFFFFFFFFFF97D0
    FFFFFFFFFFF9760 0FFFFFFF FFFF97D0 88A42844 00000001 [..........(D....]
    FFFFFFFFFFF9770 00000001 0478EADC 00000000 00000000 [.....x..........]
    FFFFFFFFFFF9780 00000000 00000000 00000001 04CCBB08 [................]
    FFFFFFFFFFF9790 00000003 FFFF9A50 00000000 00000000 [.......P........]
    FFFFFFFFFFF97A0 07000000 4FBA68F0 0FFFFFFF FFFFA150 [....O.h........P]
    FFFFFFFFFFF97B0 00000000 00000000 00000001 102B35E0 [.............+5.]
    FFFFFFFFFFF97C0 00000001 10576750 00000001 102B0BF8 [.....WgP.....+..]
    ========== FRAME [4] (kgerinv+00dc -> _ptrgl) ==========
    Dump of memory from 0x0FFFFFFFFFFF97D0 to 0x0FFFFFFFFFFF9870
    FFFFFFFFFFF97D0 0FFFFFFF FFFF9870 00000001 048F2A98 [.......p......*.]
    FFFFFFFFFFF97E0 00000001 00022080 00000001 102E5600 [...... .......V.]
    FFFFFFFFFFF97F0 00000000 42420820 00000001 10366698 [....BB. .....6f.]
    FFFFFFFFFFF9800 00000001 102B0D78 00000000 00000000 [.....+.x........]
    FFFFFFFFFFF9810 07000000 4FBA68F0 00000001 10001048 [....O.h........H]
    FFFFFFFFFFF9820 00000000 00000000 00000001 102B0BF8 [.............+..]
    FFFFFFFFFFF9830 0FFFFFFF FFFF98E0 0FFFFFFF FFFF98E0 [................]
    FFFFFFFFFFF9840 0FFFFFFF FFFF98E0 22A44B41 7FFFFFFF [........".KA....]
    FFFFFFFFFFF9850 00000001 037BF9D4 07000000 10018148 [.....{.........H]
    FFFFFFFFFFF9860 00000001 102B0BF8 00000001 10576750 [.....+.......WgP]
    ========== FRAME [5] (kgeasnmierr+0040 -> kgerinv) ==========
    Dump of memory from 0x0FFFFFFFFFFF9870 to 0x0FFFFFFFFFFF98F0
    FFFFFFFFFFF9870 0FFFFFFF FFFF98F0 0FFFFFFF FFFFBA20 [............... ]
    FFFFFFFFFFF9880 00000001 000250A4 00000001 048F2A98 [......P.......*.]
    FFFFFFFFFFF9890 00000001 048F2A8C 00000001 102E5600 [......*.......V.]
    FFFFFFFFFFF98A0 00000000 42420820 00000000 00000000 [....BB. ........]
    FFFFFFFFFFF98B0 0FFFFFFF FFFF9A50 00000000 00000000 [.......P........]
    FFFFFFFFFFF98C0 07000000 4FBA68F0 0FFFFFFF FFFFA150 [....O.h........P]
    FFFFFFFFFFF98D0 00000000 00000000 07000000 10018148 [...............H]
    FFFFFFFFFFF98E0 00000001 102B0D78 0FFFFFFF FFFF98F0 [.....+.x........]
    ========== FRAME [6] (k2srec+0360 -> 01FC219C) ==========
    Dump of memory from 0x0FFFFFFFFFFF98F0 to 0x0FFFFFFFFFFF9CF0
    FFFFFFFFFFF98F0 0FFFFFFF FFFFA020 24A42B81 FFFF97F0 [....... $.+.....]
    FFFFFFFFFFF9900 00000001 037BFEC4 00000000 00000000 [.....{..........]
    FFFFFFFFFFF9910 07000000 4EF3E6E0 00000000 000060B4 [....N.........`.]
    FFFFFFFFFFF9920 0FFFFFFF FFFFA150 0FFFFFFF FFFF9974 [.......P.......t]
    FFFFFFFFFFF9930 00000000 00000000 00000001 00000001 [................]
    FFFFFFFFFFF9940 00000000 00000000 00000000 00000001 [................]
    FFFFFFFFFFF9950 00000012 0000001A 00000020 00000021 [........... ...!]
    FFFFFFFFFFF9960 0FFFFFFF 00000003 00000000 00000000 [................]
    FFFFFFFFFFF9970 00000000 00000001 00000001 00000000 [................]
    FFFFFFFFFFF9980 00000001 102B0D78 00000000 00000024 [.....+.x.......$]
    FFFFFFFFFFF9990 00000000 00000000 00000001 102B0D78 [.............+.x]
    FFFFFFFFFFF99A0 00000000 00000100 00000000 00000000 [................]
    FFFFFFFFFFF99B0 00000000 00000000 00000000 00000002 [................]
    FFFFFFFFFFF99C0 00000000 00000000 00000001 10001048 [...............H]
    FFFFFFFFFFF99D0 00000001 102B0D78 00000000 00000000 [.....+.x........]
    FFFFFFFFFFF99E0 00000000 00000000 00000001 10001048 [...............H]
    FFFFFFFFFFF99F0 00000001 102B0BF8 0FFFFFFF FFFF9A00 [.....+..........]
    FFFFFFFFFFF9A00 0FFFFFFF FFFF9DD0 00000001 10366698 [.............6f.]
    FFFFFFFFFFF9A10 00000001 007835C4 00000000 00000000 [.....x5.........]
    FFFFFFFFFFF9A20 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9A30 0FFFFFFF FFFF9BE0 46228082 00000000 [........F"......]
    FFFFFFFFFFF9A40 0FFFFFFF FFFFA7E0 00000001 10576750 [.............WgP]
    FFFFFFFFFFF9A50 0FFFFFFF FFFFA7E0 00000000 3F6CBD40 [............?l.@]
    FFFFFFFFFFF9A60 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9A70 00000000 0000006E 00000001 105967B0 [.......n.....Yg.]
    FFFFFFFFFFF9A80 00000001 037BFBFC 0FFFFFFF FFFF98F0 [.....{..........]
    FFFFFFFFFFF9A90 00000001 10366698 00000001 10394EF0 [.....6f......9N.]
    FFFFFFFFFFF9AA0 00000000 00000000 00000000 44242082 [............D$ .]
    FFFFFFFFFFF9AB0 00000000 00000080 0FFFFFFF FFFFBA20 [............... ]
    FFFFFFFFFFF9AC0 00000000 00000001 00000001 048F2A98 [..............*.]
    FFFFFFFFFFF9AD0 00000001 048F2A8C 00000001 102E5600 [......*.......V.]
    FFFFFFFFFFF9AE0 00000000 42420820 00000001 0488B9D8 [....BB. ........]
    FFFFFFFFFFF9AF0 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9B00 07000000 4FBA68F0 00000000 00000000 [....O.h.........]
    FFFFFFFFFFF9B10 00000000 00000000 00000001 10001048 [...............H]
    FFFFFFFFFFF9B20 07000000 10018148 0FFFFFFF FFFF98F0 [.......H........]
    FFFFFFFFFFF9B30 00000000 00000000 00000000 00000000 [................]
    Repeat 8 times
    FFFFFFFFFFF9BC0 0FFFFFFF FFFFA020 24A44B81 00000000 [....... $.K.....]
    FFFFFFFFFFF9BD0 00000000 00000000 00000000 00000000 [................]
    FFFFFFFFFFF9BE0 0FFFFFFF FFFF9D60 00000000 00000000 [.......`........]
    FFFFFFFFFFF9BF0 0FFFFFFF FFFF9E80 00000000 00000000 [................]
    FFFFFFFFFFF9C00 00000000 00000000 00000000 00000000 [................]
    Repeat 2 times
    FFFFFFFFFFF9C30 00000000 00000000 0FFFFFFF FFFF9DD0 [................]
    FFFFFFFFFFF9C40 00000001 10576FB0 00000000 00000000 [.....Wo.........]
    FFFFFFFFFFF9C50 00000001 10576FB0 00000000 00000200 [.....Wo.........]
    FFFFFFFFFFF9C60 0FFFFFFF FFFF9E50 00000001 10576A00 [.......P.....Wj.]
    FFFFFFFFFFF9C70 0FFFFFFF FFFF9DE0 00000001 10366698 [.............6f.]
    FFFFFFFFFFF9C80 00000001 000A0EDC 00000001 0481E07C [...............|]
    FFFFFFFFFFF9C90 0FFFFFFF FFFF9E70 00000001 10366698 [.......p.....6f.]
    FFFFFFFFFFF9CA0 00000001 0481E358 00000001 0481E3B8 [.......X........]
    FFFFFFFFFFF9CB0 0FFFFFFF FFFF9DD0 00000000 00000000 [................]
    FFFFFFFFFFF9CC0 00000001 00ACA4C1 2C12AE92 00000000 [........,.......]
    FFFFFFFFFFF9CD0 0FFFFFFF FFFF9DD0 00000000 44242082 [............D$ .]
    FFFFFFFFFFF9CE0 00000001 01D292D8 0FFFFFFF FFFFBA20 [............... ]
    ========== FRAME [7] (kpotxrec+0058 -> k2srec) ==========
    Dump of memory from 0x0FFFFFFFFFFFA020 to 0x0FFFFFFFFFFFA0C0
    FFFFFFFFFFFA020 0FFFFFFF FFFFA0C0 24A44B81 00000000 [........$.K.....]
    FFFFFFFFFFFA030 00000001 0389181C 2CBA66E5 47F30960 [........,.f.G..`]
    FFFFFFFFFFFA040 0FFFFFFF FFFFA150 07000000 4FBF7680 [.......P....O.v.]
    FFFFFFFFFFFA050 0FFFFFFF FFFFA150 00000000 105769C8 [.......P.....Wi.]
    FFFFFFFFFFFA060 0FFFFFFF FFFFA090 0FFFFFFF FFFFBA18 [................]
    FFFFFFFFFFFA070 00000000 FFFFA130 48408288 00000000 [.......0H@......]
    FFFFFFFFFFFA080 00000001 000BA50C 00000001 1016D102 [................]
    FFFFFFFFFFFA090 00000000 0000D0B0 00000000 00000354 [...............T]
    FFFFFFFFFFFA0A0 0FFFFFFF FFFFA150 0FFFFFFF FFFFBA18 [.......P........]
    FFFFFFFFFFFA0B0 0FFFFFFF FFFFA150 0FFFFFFF FFFFBCD0 [.......P........]
    ========== FRAME [8] (kpotxen+0914 -> kpotxrec) ==========
    Dump of memory from 0x0FFFFFFFFFFFA0C0 to 0x0FFFFFFFFFFFA250
    FFFFFFFFFFFA0C0 0FFFFFFF FFFFA250 00000000 44242082 [.......P....D$ .]
    FFFFFFFFFFFA0D0 00000001 03894418 0FFFFFFF FFFFBA20 [......D........ ]
    FFFFFFFFFFFA0E0 00000000 00000001 00000001 048F2A98 [..............*.]
    FFFFFFFFFFFA0F0 00000001 048F2A8C 00000001 1015A658 [......*........X]
    FFFFFFFFFFFA100 07000000 10008000 07000000 4FBA68F0 [............O.h.]
    FFFFFFFFFFFA110 07000000 4EF0A9E8 00000001 10001048 [....N..........H]
    FFFFFFFFFFFA120 00000001 101EBFE8 07000000 3F6CBD20 [............?l. ]
    FFFFFFFFFFFA130 00000000 00000004 00000000 00000001 [................]
    FFFFFFFFFFFA140 00000000 00000206 07000000 100280C0 [................]
    FFFFFFFFFFFA150 44444444 00000014 00000025 0000000A [DDDD.......%....]
    FFFFFFFFFFFA160 0FFFFFFF FFFFA188 0FFFFFFF FFFFA19C [................]
    FFFFFFFFFFFA170 00000000 44444444 00000000 00000014 [....DDDD........]
    FFFFFFFFFFFA180 00000000 00000025 20A86E20 9BB6824A [.......% .n ...J]
    FFFFFFFFFFFA190 9B0470B3 E925DF3F 00000000 09DB0B01 [..p..%.?........]
    FFFFFFFFFFFA1A0 36444A48 88BF241A 81140E12 01000000 [6DJH..$.........]
    FFFFFFFFFFFA1B0 43544401 0007EE65 72707365 72766572 [CTD....erpserver]
    FFFFFFFFFFFA1C0 32FFFFFF FFFFA250 22242081 00000000 [2......P"$ .....]
    FFFFFFFFFFFA1D0 0FFFFFFF FFFFA250 00000000 00000000 [.......P........]
    FFFFFFFFFFFA1E0 00000001 10589828 00000001 105899F0 [.....X.(.....X..]
    FFFFFFFFFFFA1F0 0FFFFFFF FFFFBCD0 00000001 102E5600 [..............V.]
    FFFFFFFFFFFA200 00000000 42420820 00000001 0488B9D8 [....BB. ........]
    FFFFFFFFFFFA210 00000000 00000068 00000000 00000000 [.......h........]
    FFFFFFFFFFFA220 00000001 10043910 00000001 1015E6A8 [......9.........]
    FFFFFFFFFFFA230 0FFFFFFF FFFFA7E0 00000001 102B0D78 [.............+.x]
    FFFFFFFFFFFA240 00000001 10001048 0FFFFFFF FFFFA250 [.......H.......P]
    ========== FRAME [9] (opiodr+0adc -> _ptrgl) ==========
    Dump of memory from 0x0FFFFFFFFFFFA250 to 0x0FFFFFFFFFFFA650
    FFFFFFFFFFFA250 0FFFFFFF FFFFB5F0 26A42B81 FFFFAA00 [........&.+.....]
    I appreciate any idea.
    regards.

    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    1: 4, 2, 107, 245->244, fin=244, st=2
    6: 3, 2, 373, 6->7, fin=7, st=2
    6: 4, 3, 373, 7->6, fin=6, st=2
    1: 3, 3, 107, 244->245, fin=245, st=2
    Dumping last 2 granules of Transferred Memory
    Granule Header dump for 7000000353fe000, hdrsz=64, gran size=4194304
    Dump of memory from 0x07000000353FE000 to 0x07000000353FE040
    7000000353FE000 07000000 353C0000 07000000 353C0000 [....5<......5<..]
    7000000353FE010 00002000 00000000 00000000 000001E9 [.. .............]
    7000000353FE020 000001F8 0000003E 00002000 00000000 [.......>.. .....]
    7000000353FE030 00000000 00000001 00000093 00000000 [................]
    Granule Dump for 700000035000000, size=32768
    Dump of memory from 0x0700000035000000 to 0x0700000035008000
    700000035000000 07000000 35000000 07000000 35C00000 [....5.......5...]
    700000035000010 00000000 00000000 07000000 100358F0 [..............X.]
    700000035000020 07000000 35000020 07000000 35000020 [....5.. ....5.. ]
    700000035000030 07000000 353BFFF0 07000000 353BFFF0 [....5;......5;..]
    700000035000040 00000000 00000000 FFFBFFE0 4BDA17E3 [............K...]
    700000035000050 01000000 01020200 C0B38F00 003BFF89 [.............;..]
    700000035000060 00000000 00000000 07000000 10037138 [..............q8]
    700000035000070 07000000 10037138 00000000 00000000 [......q8........]
    700000035000080 00000000 00000000 00000000 00000000 [................]
    Repeat 501 times
    700000035001FE0 C0B38F00 003BE001 07000000 35000058 [.....;......5..X]
    700000035001FF0 07000000 35000030 07000000 35000030 [....5..0....5..0]
    700000035002000 00000000 00000000 00000000 00000000 [................]
    Repeat 1535 times
    Done Dumping transfer, resize ops and granules.
    Dump of memory from 0x070000004DB38090 to 0x070000004DB38208
    70000004DB38090 07000000 4DBEE560 07000000 4DBEE5B0 [....M..`....M...]
    70000004DB380A0 00000006 000000B4 00050000 000001B2 [................]
    70000004DB380B0 00000000 00000000 0C000100 00000045 [...............E]
    70000004DB380C0 00000000 00000000 00000220 00760000 [........... .v..]
    70000004DB380D0 00000001 0000045A 00000000 00000000 [.......Z........]
    70000004DB380E0 00000000 00000000 00000000 00000000 [................]
    Repeat 2 times
    70000004DB38110 00000000 00000000 07000000 4DB38118 [............M...]
    70000004DB38120 07000000 4DB38118 07000000 4DB37FB0 [....M.......M...]
    70000004DB38130 07000000 4DB382A0 00000000 00000000 [....M...........]
    70000004DB38140 00000000 00000000 00000003 00000000 [................]
    70000004DB38150 00000000 00000000 00000000 00000000 [................]
    70000004DB38160 00010000 00000006 00000006 00000007 [................]
    70000004DB38170 00000007 00000006 00000B40 00000000 [...........@....]
    70000004DB38180 44454641 554C5400 00000000 00000000 [DEFAULT.........]
    70000004DB38190 00000000 00070000 00000003 00002000 [.............. .]
    70000004DB381A0 00000002 00050006 07000000 4DB6B230 [............M..0]
    70000004DB381B0 00000001 00000000 00000000 00000000 [................]
    70000004DB381C0 00000035 FE233D2F 00000000 0057E5DC [...5.#=/.....W..]
    70000004DB381D0 00000000 003A6260 00000000 0003617A [.....:b`......az]
    70000004DB381E0 00000000 00000000 00000000 00000235 [...............5]
    70000004DB381F0 00000000 00001472 00000000 000000DE [.......r........]
    70000004DB38200 00000000 000007D5 [........]
    KCBS: disable_kcbsbpd is 0
    KCBS: bufcnt = 180, nb_kcbsds = 180
    KCBS: fbufcnt = 37
    KCBS: Tot bufs in set segwise
    KCBS: nbseg[0] is 15
    KCBS: nbseg[1] is 15
    KCBS: nbseg[2] is 15
    KCBS: nbseg[3] is 15
    KCBS: nbseg[4] is 15
    KCBS: nbseg[5] is 15
    KCBS: nbseg[6] is 15
    KCBS: nbseg[7] is 15
    KCBS: nbseg[8] is 15
    KCBS: nbseg[9] is 15
    KCBS: nbseg[10] is 15
    KCBS: nbseg[11] is 15
    KCBS: Act cnt = 90
    KCBS: bufcnt = 180, nb_kcbsds = 180
    KCBS: fbufcnt = 37
    KCBS: Tot bufs in set segwise
    KCBS: nbseg[0] is 15
    KCBS: nbseg[1] is 15
    KCBS: nbseg[2] is 15
    KCBS: nbseg[3] is 15
    KCBS: nbseg[4] is 15
    KCBS: nbseg[5] is 15
    KCBS: nbseg[6] is 15
    KCBS: nbseg[7] is 15
    KCBS: nbseg[8] is 15
    KCBS: nbseg[9] is 15
    KCBS: nbseg[10] is 15
    KCBS: nbseg[11] is 15
    KCBS: Act cnt = 90
    KSOLS: Begin dumping all object level stats elements
    KSOLS: Done dumping all elements. Exiting.
    Dump event group for SESSION
    Dump event group for SYSTEM

  • 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

  • ORA-00600: internal error code, arguments: [upsRowVec4] in oracle 11g R2

    Hi
    Getting ORA-00600: internal error code, arguments: [upsRowVec4] error while executing merge statement in oracle 11gR2
    MERGE INTO app_mast_out OUT USING
    (SELECT
    /*+index(ip75) index(out1)*/
    DISTINCT ip75.cab_type,
    out1.rowid rw
    FROM app_mast_ip0075t1 ip75,
    app_mast_out out1
    WHERE OUT1.de026 = SUBSTR (ip75.mcc, 2, 4)
    AND deleted ='N'
    AND OUT1.PROCESS_ID ='B14.280410.0367'
    ) cab ON(OUT.PROCESS_ID='B14.280410.0367' AND out.rowid=cab.rw)
    WHEN MATCHED THEN
    UPDATE SET out.CAB_TYPE=cab.cab_type
    trace file output
    Incident 8907 created, dump file: /u01/app/oracle/diag/rdbms/geni11g/geni11g/incident/incdir_8907/geni11g_ora_19900_i8907.trc
    ORA-00600: internal error code, arguments: [upsRowVec4], [], [], [], [], [], [], [], [], [], [], []
    incident trace file output
    Dump continued from file: /u01/app/oracle/diag/rdbms/geni11g/geni11g/trace/geni11g_ora_19900.trc
    ORA-00600: internal error code, arguments: [upsRowVec4], [], [], [], [], [], [], [], [], [], [], []
    ========= Dump for incident 8907 (ORA 600 [upsRowVec4]) ========
    *** 2010-04-28 13:22:56.245
    dbkedDefDump(): Starting incident default dumps (flags=0x2, level=3, mask=0x0)
    ----- Current SQL Statement for this session (sql_id=8ccz9u3h32tq7) -----
    MERGE INTO APP_MAST_OUT OUT USING (SELECT /*+index(ip75) index(out1)*/ DISTINCT IP75.CAB_TYPE,OUT1.ROWID RW FROM APP_MAST_IP0075T1 IP75,APP_MAST_OUT OUT1 WHERE OUT1.DE026 = SUBSTR (IP75.MCC, 2, 4) AND DELETED='N' AND OUT1.PROCESS_ID=:B1 ) CAB ON(OUT.PROCESS_ID=:B1 AND OUT.ROWID=CAB.RW) WHEN MATCHED THEN UPDATE SET OUT.CAB_TYPE=CAB.CAB_TYPE
    ----- PL/SQL Stack -----
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    0x1a38469d8 86 procedure FINTECH.SPR_MAST_OUTFEE_DATA
    0x1a4ac12b0 388 procedure FINTECH.SPR_MAST_OUTLEGACYCATEGORIZE
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    skdstdst()+36 call kgdsdst() 000000000 ? 000000000 ?
    7FBFFE41B8 ? 000000001 ?
    7FBFFE86B8 ? 000000000 ?
    ksedst1()+98 call skdstdst() 000000000 ? 000000000 ?
    7FBFFE41B8 ? 000000001 ?
    000000000 ? 000000000 ?
    ksedst()+34 call ksedst1() 000000000 ? 000000001 ?
    7FBFFE41B8 ? 000000001 ?
    000000000 ? 000000000 ?
    dbkedDefDump()+2736 call ksedst() 000000000 ? 000000001 ?
    7FBFFE41B8 ? 000000001 ?
    000000000 ? 000000000 ?
    ksedmp()+36 call dbkedDefDump() 000000003 ? 000000002 ?
    7FBFFE41B8 ? 000000001 ?
    000000000 ? 000000000 ?
    ksfdmp()+64 call ksedmp() 000000003 ? 000000002 ?
    7FBFFE41B8
    please give the solution as it is live environment

    Hi,
    how does a update work? I see now a merge with only an update, so you can rewrite it to an update statement. And you don't need the distinct, rowid makes it already unique.
    Herald ten Dam
    htendam.wordpress.com

  • ORA-00600: internal error code while drop package !

    Friends ,
    I am using oracle 10g in Oracle Ent Linux 5.0 . Now I want to drop a  user , when I give the 'drop user' command I got the below error :
    SQL> drop user user cascade;
    drop user user cascade
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [psdtyfnd_with_suffix], [], [], [],
    Then I try to manually drop all the object of the specified schema . All objects are dropped except a 'PACKAGE' . When I manually drop that PACKAGE
    again then I found the above error again . Now I am sure that  this 'package' is the main culprit .
    Now would anyone please help me how I drop this package manually  ? 

    Hi,
    Glad to know that its solved.
    The cause of this issue is not known. It is believed that importing into a database where these pipelined functions already exist may be the cause, but testing has failed to reproduce the problem.
    In one of the bugs logged for a similar issue,  problem will normally happen only on upgrade and not under regular running of the DB. Therefore, it should be of relatively low impact to the real users. Also, Upgrading to 11g you shouldn't encounter this problem.
    Regards,
    Suntrupth

  • ORA-00600: internal error code, arguments: [15713], [2], [1], [13], [2], []

    All,
    Please help me. I am getting ORA-00600: internal error code, arguments: [15713], in the alert log file. It is continuosly generating the Incidents with different incident numbers.
    Why is this occuring ?
    Dump file /Ideal/oracle/p123/diag/rdbms/p123/p123/incident/incdir_144985/p123_ora_4332406_i156985.trc
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    ORACLE_HOME = /Ideal/oracle/product/11.1.0/db_1
    System name: AIX
    Node name: PROD1
    Release: 1
    Version: 6
    Machine: 00XXXXXX
    Instance name: p123
    Redo thread mounted by this instance: 1
    Oracle process number: 18
    Unix process pid: 1234456, image: oracle@PROD1
    *** 2010-02-05 13:43:02.862
    *** SESSION ID:(239.52962) 2010-02-05 13:43:02.862
    *** CLIENT ID:() 2010-04-07 13:43:02.862
    *** SERVICE NAME:(SYS$USERS) 2010-04-07 13:43:02.862
    *** MODULE NAME:(JDBC Thin Client) 2010-04-07 13:43:02.862
    *** ACTION NAME:() 2010-02-05 13:43:02.862
    Dump continued from file: /Ideal/oracle/p123/diag/rdbms/p123/p123/trace/p123_ora_4332406.trc
    ORA-00600: internal error code, arguments: [15713], [2], [1], [13], [2], [], [], []
    ========= Dump for incident 4332406 (ORA 600 [15713]) ========
    *** 2010-02-05 13:43:02.862
    ----- Current SQL Statement for this session (sql_id=3ng2dzvjfgb61) -----
    The above error and incidents are repeating now.. Today i got neealy 5 inicidents so far.
    I try to google it, but could not get a relevant solution. Please help me with the solutions.
    THANK YOU ALL,
    David
    Edited by: Pas Moh on Apr 13, 2010 8:25 AM

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

  • ORA-00600: internal error code, arguments: [6122], [0], [4], [0], [], [], [

    Hi All,
    I Got ORA-00600: internal error code, arguments: [6122], [0], [4], [0], [], [], [], [], [], [], [], []
    today i check for Oracle knowledge but i can see only until 9i version.
    I am pasting my OS AND database version below
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE 11.2.0.2.0 Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    I didn't find any knowledge for my database base version please any one help me on this
    Thanks in Advance
    Kind Regards
    Venkat

    980323 wrote:
    Hi Vishal,
    No not yet i will paste my trace file please can you have a look on it
    Dump continued from file: /oracle/admin/diag/rdbms/ewahed13/EWAHED13/trace/EWAHED13_ora_14503.trc
    ORA-00600: internal error code, arguments: [6122], [0], [4], [0], [], [], [], [], [], [], [], []
    ========= Dump for incident 22995 (ORA 600 [6122]) ========
    *** 2013-05-16 12:36:32.933
    dbkedDefDump(): Starting incident default dumps (flags=0x2, level=3, mask=0x0)
    ----- Current SQL Statement for this session (sql_id=6zcs0sc3nhj85) -----
    UPDATE "CS_ACTUALS"."APPLICATIONSTATE" SET "DEFINITION"=:1,"DEFINITIONDT"=:2 WHERE "DEFINITIONDT"=:3 AND "ROWID"=:4 RETURNING ROWID into :5Depending upon the platform version see bugs:
    Bug 12926930
    Bug 15907953
    Bug 16374276
    I thinks its the Index block corrupt - So you have following options
    1) Apply the patch - which is possible by seeing the exact bud
    2) Try to recover the block
    3) Try to drop and recreate the index - If its a non sys object.
    You need to check and populate V$DATABASE_BLOCK_CORRUPTION for blocks which are marked corrupt.
    Use dbv,rman validate commands to populate V$DATABASE_BLOCK_CORRUPTION view
    Use - Identify the corruption extension using RMAN/DBV/ANALYZE etc [ID 836658.1] note for identifying the blocks that are corrupt.

  • ORA-00600: internal error code, arguments:[k2gUGPC: ptcnt = tcnt] in 11gR2

    Dear Friends,
    we are using 11.2.0.2 RAC database (e-biz database) on solaris sparc (64 bit) and we are getting errors on alert log:
    ORA-00600: internal error code, arguments: [k2gUGPC: ptcnt >= tcnt],
    Please let me know the fix.
    Recent Change:
    Upgrade 10.2.0.2 RAC to 11.2.0.2 RAC during the migration of 11.5.10.2 to R12.1.3
    Errors:
    Sun May 20 06:05:16 2012
    Non critical error ORA-48913 caught while writing to trace file "/oradpw/db/diag/rdbms/pdpw/PDPW1/incident/incdir_112309/PDPW1_ora_22527_i112309.trc"
    Error message: ORA-48913: Writing into trace file failed, file size limit [10485760] reached
    Writing to the above trace file is disabled for now on...
    Use ADRCI or Support Workbench to package the incident.
    See Note 411.1 at My Oracle Support for error and packaging details.
    Error 600 trapped in 2PC on transaction 128.33.6061. Cleaning up.
    Error stack returned to user:
    ORA-00600: internal error code, arguments: [k2gUGPC: ptcnt >= tcnt], [], [], [], [], [], [], [], [], [], [], []
    Errors in file /oradpw/db/diag/rdbms/pdpw/PDPW1/trace/PDPW1_ora_22527.trc (incident=112310):
    ORA-00603: ORACLE server session terminated by fatal error
    ORA-00600: internal error code, arguments: [k2gUGPC: ptcnt >= tcnt], [], [], [], [], [], [], [], [], [], [], []
    Incident details in: /oradpw/db/diag/rdbms/pdpw/PDPW1/incident/incdir_112310/PDPW1_ora_22527_i112310.trc
    Sun May 20 06:05:22 2012
    Dumping diagnostic data in directory=[cdmp_20120520060522], requested by (instance=1, osid=22527), summary=[incident=112309].
    Sun May 20 06:05:22 2012
    Sweep [inc][112310]: completed
    Sweep [inc][112309]: completed
    Sweep [inc2][112309]: completed
    opiodr aborting process unknown ospid (22527) as a result of ORA-603
    Dumping diagnostic data in directory=[cdmp_20120520060525], requested by (instance=1, osid=22527), summary=[incident=112310].
    Sun May 20 06:06:22 2012
    Sweep [inc2][112310]: completed
    Trace file /oradpw/db/diag/rdbms/pdpw/PDPW1/trace/PDPW1_ora_22527.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP, Data Mining
    and Real Application Testing options
    ORACLE_HOME = /oradpw/db/tech_st/11.2.0
    System name: SunOS
    Node name: jxebpdb1
    Release: 5.10
    Version: Generic_142909-17
    Machine: sun4u
    Instance name: PDPW1
    Redo thread mounted by this instance: 1
    Oracle process number: 36
    Unix process pid: 22527, image: oracle@jxebpdb1
    *** 2012-05-20 06:04:17.040
    *** SESSION ID:(263.3301) 2012-05-20 06:04:17.040
    *** CLIENT ID:(SCHEDULE_MANAGER) 2012-05-20 06:04:17.040
    *** SERVICE NAME:(PDPW) 2012-05-20 06:04:17.040
    *** MODULE NAME:(XXIMSPULLVAARINV) 2012-05-20 06:04:17.040
    *** ACTION NAME:(Concurrent Request) 2012-05-20 06:04:17.040
    Incident 112309 created, dump file: /oradpw/db/diag/rdbms/pdpw/PDPW1/incident/incdir_112309/PDPW1_ora_22527_i112309.trc
    ORA-00600: internal error code, arguments: [k2gUGPC: ptcnt >= tcnt], [], [], [], [], [], [], [], [], [], [], []
    *** 2012-05-20 06:05:22.159
    Incident 112310 created, dump file: /oradpw/db/diag/rdbms/pdpw/PDPW1/incident/incdir_112310/PDPW1_ora_22527_i112310.trc
    ORA-00603: ORACLE server session terminated by fatal error
    ORA-00600: internal error code, arguments: [k2gUGPC: ptcnt >= tcnt], [], [], [], [], [], [], [], [], [], [], []
    kgefec: fatal error 0
    Regards,
    DB

    -Try to search on ORA-600/ORA-7445 Error Look-up Tool [ID 153788.1]
    -Raise SR to oracle support if no detail found on above tool.

  • ORA-00600: internal error code, arguments: [krhpfh_03-1209]

    Hello.
    I trying to apply the note *11g Using Snapshot Standby Database. [ID 443720.1]*, but this is failing whit the ORA-00600: internal error code, arguments: [krhpfh_03-1209]:
    SYS@DBONE SQL>alter database recover managed standby database cancel;
    Database altered.
    SYS@DBONE SQL>ALTER DATABASE CONVERT TO SNAPSHOT STANDBY;
    ALTER DATABASE CONVERT TO SNAPSHOT STANDBY
    *+
    ERROR at line 1:
    ORA-38784: Cannot create restore point 'SNAPSHOT_STANDBY_REQUIRED_10/24/2012
    +08:40:35'.+
    +ORA-00600: internal error code, arguments: [krhpfh_03-1209], [1], [780559464],+
    +[797501405], [381350474], [12], [0], [0], [], [], [], []+
    ORA-01110: data file 1: 'DGDATA1/dbone/datafile/system.266.781826463'+
    I do not what is the problem, in metalink are the note *Bug 5701695 - OERI[krhpfh_03-1209] during recovery [ID 5701695.8]*, but this note is for Oracle 10GR2 and I have Oracle 11GR2.
    Do You know what is the problem?
    Regards,
    Milton

    Hi Milton,
    As I know that It is a BUG. But you can reach to solve from http://www.appsdbatechstuff.com/2012/02/ora-01111-and-ora-01110-on-standby.html. I lived similar problem that I solved .
    If you reach to solution, you should open SR.

  • ORA-00600: internal error code, arguments: [kqlidchg1]

    Every time I compile a specific package body in Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production I get
    Error: ORA-00600: internal error code, arguments: [kqlidchg1], [], [], [], [], [], [], [], [], [], [], []
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00001: unique constraint (SYS.I_PLSCOPE_SIG_IDENTIFIER$) violated
    It doesn't happen with all packages though, only this one. Is there any way to fix this?
    Thanks.

    The best way is to open a TAR with Oracle Support.
    For a probable Quick solution -
    you might wanna have a look at the metalink for the specific error message (somebody might have already raised a TAR with oracle support and oracle support might have already answered) if you have login in metalink.

  • ORA-00600: internal error code, arguments: [ktsircinfo_num1]

    While taking export of a table received EXP error and while dropping/selecting the same gor ora-600 errors.
    . . exporting table TEST4
    EXP-00003: no storage definition found for segment(29, 371385)
    SQL >Drop table test4 cascade;
    ORA-00600: internal error code, arguments: [ktsircinfo_num1], [29], [29], [371385], [], [], [], []
    sql> Desc test4;
    ORA-00600: internal error code, arguments: [ktsircinfo_num1], [29], [29], [371385], [], [], [], []
    I dont want to log TAR with oracle right now... I tried dropping and recreating Undo tablespace but still did not help much . Database version is 9204

    hi
    read metalink ID - 153788.1
    CHeers

  • ORA-00600: internal error code, arguments: [unable to load XDB library]

    hi everybody ;
    i have 9.2.0.7 db runs on SLES9 on host A. and i take full rman database backup to make a new database on different host ( host B ) with different file structure. ( sid is the same ) i had already 1 database on host B. after this duplicate now there are 2 database on host B.
    i take daily full database rman backup on the new host for my new database and there is no problem. when i try to take extra full export backup i get an error ;
    Dynamic link error: libxdb.so: cannot open shared object file: No such file or directory
    *** 2010-08-05 09:46:12.868
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [unable to load XDB library], [], [], [], [], [], [], []
    as i search ; i have to stop the database and listener and set the LD_LIBRARY_PATH variable. how can i make this without make any mistake for the first database runs on Host B.
    because 2 database must be up and running on host B. can you explaın these operation step by step ?
    thank you ....

    craft wrote:
    any idea ?
    >any idea ?
    your database is out off support you should consider to upgrade. ORA-00600 indicate for bug

  • ORA-00600: internal error code While trying to view cube

    While trying to view cube, i encounter the following error
    oracle.dss.dataSource.common.QueryRuntimeException: BIB-9509 Oracle OLAP did not create cursor.
    oracle.express.idl.util.OlapiException: java.sql.SQLException: ORA-00600: internal error code, arguments: [xsLMapCrtAddPhrase01], [], [], [], [], [], [], [], [], [], [], []
    ORA-06512: at "SYS.GENDEFINITIONMANAGERINTERFACE", line 42
    ORA-06512: at line 1
    oracle.dss.dataSource.common.OLAPException: BIB-9509 Oracle OLAP did not create cursor.
    oracle.express.idl.util.OlapiException: java.sql.SQLException: ORA-00600: internal error code, arguments: [xsLMapCrtAddPhrase01], [], [], [], [], [], [], [], [], [], [], []
    ORA-06512: at "SYS.GENDEFINITIONMANAGERINTERFACE", line 42
    ORA-06512: at line 1
    oracle.express.idl.util.OlapiException: java.sql.SQLException: ORA-00600: internal error code, arguments: [xsLMapCrtAddPhrase01], [], [], [], [], [], [], [], [], [], [], []
    ORA-06512: at "SYS.GENDEFINITIONMANAGERINTERFACE", line 42
    ORA-06512: at line 1
    at oracle.dss.dataSource.common.QueryDataDirector.addDataDirectorListener(QueryDataDirector.java:795)
    at oracle.dss.dataView.ModelAdapter.setDataDirector(ModelAdapter.java:173)
    at oracle.dss.crosstab.CrosstabModelAdapter.setDataSource(CrosstabModelAdapter.java:54)
    at oracle.dss.dataView.Dataview.setDataSource(Dataview.java:396)
    at oracle.olap.awm.dataobject.dialog.olapi.UBiBeanUtil.getCrosstab(Unknown Source)
    at oracle.olap.awm.dataobject.dialog.olapi.UBiBeanUtil.showCrosstab(Unknown Source)
    at oracle.olap.awm.dataobject.dialog.olapi.UBiBeanUtil.showData(Unknown Source)
    at oracle.olap.awm.navigator.node.olapi.UCubeNode.actionPerformed(Unknown Source)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.AbstractButton.doClick(Unknown Source)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
    at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    This is with a simple cube with only one dimension. i had created the same cube earlier with 10 dimensions but same error occurred. i felt it had to do with my setup of the cube. I have recreated the cube a couple of times with different names but same error exists. interestingly all dimensions are viewable after maintenance.
    I am begining to doubt the efficacy of AWM + oracle OLAP in use for a production environment. i have been at this for quite some time but no solution yet. please i would appreciate anyhelp

    Have you ever had any cube working in this environment? yes. i had created multiple versions of the same cube with fewer dimensions. I had created a cube (USAGE) with 5 dimensions, it worked. I later created same cube with 10 dimensions, that was the Genesis of the error. i had exported the eif file, deleted the awm, reimpored the awm, same errors. recreated the cube same error. i even tried recreating the cube wih one dimension but the same error persists.
    database is Release 11.1.0.7.0
    AWM standalone client :awm11.1.0.7.0B

  • ORA-00600: internal error code, arguments: [kcrfr_update_nab_2], [0xB1B59D

    Can anyone please try check out this ORA-600 error, ORA-00600: internal error code, arguments: [kcrfr_update_nab_2], [0xB1B59DA4],
    [2], [], [], [], [], [].
    My db went down abruptly due to power source ....now the database mounts successfully but when u try opening the db i.e. alter database open; it comes up with the error. Plz kindly treat urgently.Thanks

    For all kind of internal errors, you should open SR (Service Request) in metalink. You need to contact Oracle Support
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • ORA-00600: internal error code, arguments: [ttcgcshnd-1], [0], [], [],.....

    Hi,
    While connecting with database, I got the following error,
    ORA-00600: internal error code, arguments: [ttcgcshnd-1], [0], [], [], [], [], [], []
    I am using oracle 9i. Can anyone tell me the solution of that error ?
    Thanks and Regards,
    Hiren

    many people are here because they lack that optionIt's not false, indeed, but if nobody had the same error, there is no chance to solve it.
    At least a complete system/operation description is necessary to indicates some valid ways to investigate.
    Nicolas.

Maybe you are looking for

  • Server crashes when I do network "find"

    I have a network of five computers, three power PC's and two laptops. No matter which machine I attempt the "find" from, it automatically crashes the server. Any suggestions?

  • My TV no longer working with Apple TV

    About a week ago I had problems with my Airport Extreme and Wi-Fi. I had changed the name and password of the Airport Extreme wi-fi network and the printer would not work. After plenty of trouble I finally reset the Airport Extreme with factory setti

  • How can i get the 'like in photoshop' preset?

    I was watching an Illustrator 6 tutorial and the instructor was able to change his workspace to resemble photoshop with a 'Like in photoshop' preset. There was also an InDesign and FreeHand preset as well. Is this a feature that needs to be enabled o

  • Reuse of a query FM in an ALV

    Hi, i´m developing an Hierarquical ALV and in order to obtain the data of the item internal table i´ve found a FM of a query already developed that provides exactly the data i need. the code in question is: CALL FUNCTION '/1BCDWB/IQ000000000073EXTR'

  • Change the default work center in CRM 2007 webclient

    Hi all, With IC_AGENT role,the default work center is 'Account identification'.When I click the buttone'end' ,it jump to account identification work center ,how to change this default,config or coding ? Thanks a lot! Best regards, LeKa