Error --00600

Hi team
In our server I am observing Disp+work.exe error (ie)Dispatcher
stops after 2-3 minutes when MMC is started,So I did research
and found the following error ...Can anyone guide me as per
how to overcome this error.
*ORA-00600: internal error code, arguments:[kcratrllastbwr], [], [], [], [], [], [], [],*_
Thank you
Manjula

If you have access to metalink then try this ORA-600 lookup tool:
https://www.metalink.oracle.com/metalink/plsql/f?p=130:14:12068413255003027052::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,153788.1,1,1,1,helvetica
Daljit Singh

Similar Messages

  • Internal error 00600 when using Blobs

    Cross posted from
    [Java forums|http://forums.sun.com/thread.jspa?messageID=10706861]
    We are having problems writing rows to tables that include a Blob column. Oracle version is 10g. Table schema looks like this:
    CREATE TABLE xyResetRewind ( ResetRewind  NUMBER(38)  NOT NULL, RowDate      DATE        NOT NULL, ForRowDate  DATE        NOT NULL, DataClass    VARCHAR2(3)  NOT NULL, DataType    VARCHAR2(2)  NOT NULL, DataKeyVal  BLOB        NOT NULL, RRStatus    VARCHAR2(3)  NOT NULL, CreationDate TIMESTAMP    NOT NULL, LastUpdated  TIMESTAMP    NOT NULL, User_        VARCHAR2(16) NOT NULL )
    and the SQL used to write it looks like this:
    MERGE INTO xyResetRewind USING DUAL ON (ResetRewind = ?) WHEN MATCHED THEN UPDATE SET RowDate      = ?, ForRowDate  = ?, DataClass    = ?, DataType    = ?, DataKeyVal  = ?, RRStatus    = ?, CreationDate = ?, LastUpdated  = ?, User_        = ? WHEN NOT MATCHED THEN INSERT ( ResetRewind, RowDate, ForRowDate, DataClass, DataType, DataKeyVal, RRStatus, CreationDate, LastUpdated, User_ ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )
    The driver recommended by Oracle for 10g is version 10.2.0.4.0 Feb 2 2008. We have also tried 11.2.0.7.0 28 Aug 2008 (the 11g drivers) with no luck. We use either PreparedStatement.setBytes() or setObject passing the byte array for the BLOB content.
    We then get this error:
    ORA-00600: internal error code, arguments: [koklismem1: r_length is 0] , [], [], [], [], [], [], []       at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)       at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)       at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)       at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)       at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:219)       at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:970)       at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1190)       at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3370)       at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3476)       at com.inqwell.any.io.sql.AnySql.executePrepared(AnySql.java:372)   .   .
    Our jdbc code uses only interface methods defined in Java, so no oracle-specific stuff is used or allowed.
    There seems to be very little on the internet about this problem, the only things I could find being these:
    http://e-docs.bea.com/wls/docs81/faq/jdbc.html#501544
    http://www.gcqh.com/oracle/241
    We haven't interfaced with Oracle for a number of years (we don't get this problem with mysql) so just for fun we tried an old version of the jdbc driver: version 9.0.2.0.0 from 6 April 2004, hmmm. Anyway, that works, but obviously this is not something we want to rely on.
    Does anyone have an idea what this is and perhaps a better workaround than using ancient software?

    Thanks for your reply. Oracle support is managed elsewhere in my company so I passed on your information. Apparently it's actually a different bug that applies in this case:
    *Bug No. 8224110  ORA-00600[KOKLISMEM1: R_LENGTH IS 0] OCCURS WHEN EXECUTING MERGE STATEMENT*
    Filed 03-FEB-2009 Updated 29-MAY-2009 Product Oracle Server - Enterprise Edition Product Version 10.2.0.4
    Fixed in Product Version < no data>
    *ORA-00600[koklismem1: r_length is 0] or ORA-600[12333] occurs when executing MERGE statement which has BLOB*
    columns from JDBC application.  Executing MERGE statement which has BLOB columns, the following error   occurs on
    the client side and ORA-600 occurs in server side.
    I'm told there is no resolution as yet....

  • Oracle internal error 00600 when using Blobs

    We are having problems writing rows to tables that include a Blob column. Oracle version is 10g. Table schema looks like this:
    CREATE TABLE xyResetRewind ( ResetRewind  NUMBER(38)  NOT NULL, RowDate      DATE        NOT NULL, ForRowDate  DATE        NOT NULL, DataClass    VARCHAR2(3)  NOT NULL, DataType    VARCHAR2(2)  NOT NULL, DataKeyVal  BLOB        NOT NULL, RRStatus    VARCHAR2(3)  NOT NULL, CreationDate TIMESTAMP    NOT NULL, LastUpdated  TIMESTAMP    NOT NULL, User_        VARCHAR2(16) NOT NULL )
    and the SQL used to write it looks like this:
    MERGE INTO xyResetRewind USING DUAL ON (ResetRewind = ?) WHEN MATCHED THEN UPDATE SET RowDate      = ?, ForRowDate  = ?, DataClass    = ?, DataType    = ?, DataKeyVal  = ?, RRStatus    = ?, CreationDate = ?, LastUpdated  = ?, User_        = ? WHEN NOT MATCHED THEN INSERT ( ResetRewind, RowDate, ForRowDate, DataClass, DataType, DataKeyVal, RRStatus, CreationDate, LastUpdated, User_ ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )
    The driver recommended by Oracle for 10g is version 10.2.0.4.0 Feb 2 2008. We have also tried 11.2.0.7.0 28 Aug 2008 (the 11g drivers) with no luck. We use either PreparedStatement.setBytes() or setObject passing the byte array for the BLOB content.
    We then get this error:
    ORA-00600: internal error code, arguments: [koklismem1: r_length is 0] , [], [], [], [], [], [], []       at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)       at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)       at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)       at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)       at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:219)       at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:970)       at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1190)       at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3370)       at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3476)       at com.inqwell.any.io.sql.AnySql.executePrepared(AnySql.java:372)  .   .
    Our jdbc code uses only interface methods defined in Java, so no oracle-specific stuff is used or allowed.
    There seems to be very little on the internet about this problem, the only things I could find being these:
    [t-5349591]
    [http://e-docs.bea.com/wls/docs81/faq/jdbc.html#501544|http://e-docs.bea.com/wls/docs81/faq/jdbc.html#501544]
    [http://www.gcqh.com/oracle/241|http://www.gcqh.com/oracle/241]
    We haven't interfaced with Oracle for a number of years (we don't get this problem with mysql) so just for fun we tried an old version of the jdbc driver: version 9.0.2.0.0 from 6 April 2004, hmmm. Anyway, that works, but obviously this is not something we want to rely on.
    Does anyone have an idea what this is and perhaps a better workaround than using ancient software?

    ORA-600 is a support error. That means, you should get in touch with Oracle about it. There's not a great deal anyone here can do about it.

  • Database Error--00600

    Hi team
    In our server I am observing Disp+work.exe error (ie)Dispatcher
    stops after 2-3 minutes when MMC is started,So I did research
    and found the following error ...Can anyone guide me as per
    how to overcome this error.
    *ORA-00600: internal error code, arguments:[kcratrllastbwr], [], [], [], [], [], [], [],*_
    Thank you
    Manjula

    (ORA 600) error is a generic internal error from Oracle, and you must look-up the numeric arguments to understand the nature of the internal error.
    u have to check with various arguments following the message in the Oracle alert log:
    ORA-00600 [723][51202][1][51200][][] According to the arguments contact ur dba to take particualar action
    With Regards
    Bhaskar.

  • Oracle Generate ERROR 00600

    I have a development database in Windows NT Server. One of my colleagues try to load the scripts which basically drop a JAVA class in the database and it picks up an error:
    *** SESSION ID:(28.197) 2001-09-25 08:54:52.953
    *** 2001-09-25 08:54:52.953
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [26599], [1], [14], [], [], [], [], []
    Current SQL statement for this session:
    drop java class "com.atune.presentation.plan.prePlaMaiAddresses"
    Then he tried to recreate that class and provides the error:
    *** SESSION ID:(13.3227) 2001-09-26 09:18:30.421
    *** 2001-09-26 09:18:30.421
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [26599], [1], [14], [], [], [], [], []
    Current SQL statement for this session:
    create or replace java class using 'com/atune/presentation/plan/prePlaMaiAddresses'
    However, the databases are working fine when we are loading other Java Classes with no errors.
    As I have checked the documentation of the error messages, there are number of possible errors coming up.
    What is the error?

    Successfully tested with 11G XE:
    SQL> declare
      2  a exception;
      3  pragma exception_init(a,-600);
      4  begin
      5  raise a;
      6  end;
      7  /
    declare
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [], [], [], [], [], [], [], [], [],
    ORA-06512: at line 5Source: http://www.bluegecko.net/download/breaking-oracle.pdf.

  • Table of varchar2(32000) error

    Oracle Std.Edition 10.2.0.4.0
    NLS_CHARACTERSET AL32UTF8
    NLS_LENGTH_SEMANTICS database:Byte instance:Char session:Char
    the following test creates error 00600:
    DROP TYPE TEST.TSSTRINGLIST
    CREATE OR REPLACE type TSStringList is table of varchar2(32000)
    declare
    sl TSStringList := TSStringList();
    res TSStringList := TSStringList();
    begin
    sl.extend(1);
    sl(sl.count) := 'hallo 1';
    sl.extend(2);
    sl(sl.count) := 'hallo 2';
    sl.extend(3);
    sl(sl.count) := 'hello 3';
    select column_value bulk collect into res from table(sl);
    end;
    Line 1: ORA-00600: Interner Fehlercode, Argumente: [mal0-size-too-large], [bfo_qeeOpn: qkexrXformOpn_InitOpn], [], [], [], [], [], []
    ORA-06512: in Zeile 14
    up to varchar2 (24000) or with NLS_LENGTH_SEMANTICS database:Byte instance:byte session:byte it works without problems;
    whats wrong ??
    ---------------------------------------------------------------------------

    and to show the content of the collection:
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2  sl TSStringList := TSStringList();
      3  res TSStringList := TSStringList();
      4  idx pls_integer;
      5  begin
      6  sl.extend(1);
      7  sl(sl.count) := 'hallo 1';
      8  sl.extend(2);
      9  sl(sl.count) := 'hallo 2';
    10  sl.extend(3);
    11  sl(sl.count) := 'hello 3';
    12  select column_value bulk collect into res from table(sl);
    13     idx := res.first;
    14     while idx is not null
    15     loop
    16        dbms_output.put_line (to_char (idx)||res(idx));
    17        idx := res.next (idx);
    18     end loop;
    19     dbms_output.put_line (res.count);
    20* end;
    SQL> /
    1hallo 1
    2
    3hallo 2
    4
    5
    6hello 3
    6
    PL/SQL procedure successfully completed.This is on version:
    SQL> select *
      2    from v$version
      3  /
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.1.0.5.0 - 64bi
    PL/SQL Release 10.1.0.5.0 - Production
    CORE    10.1.0.5.0      Production
    TNS for HPUX: Version 10.1.0.5.0 - Production
    NLSRTL Version 10.1.0.5.0 - Production

  • Form 6.0/6i with database Upgrade to Oracle 8i

    Hi all,
    I am planning to update our database from Oracle 7.3.4 to Oracle 8i (8.1.6).
    Do you know that whether i need to recomplile all report (rep) and form (fmx) after grade?
    For my past experience, all reports need to recomplile in REPORT 3.0 for change of table any table structure/move tablespace.
    Best Regards
    Chris Sung
    null

    Hi Himanshu,
    oracle forms6i and reports6i is not certified for Oracle 10g relese2 database,its only certified for oracle10g release1 with Patch17.
    We ran in to same problem recently..
    We got errors when we are compiling Forms and reports against Oracle10g release2.database
    Error 00600: database internal error.
    This is only happened with the few Forms and Reports which are having Database links(For those remote databases which were lower version than 10g relese2) in it.

  • 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 error when dropping a table

    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    When I tried to drop a table, I got 600 error:
    SQL> desc DEV.ATTR_IDX$EX
    Name Null? Type
    NODE_ID NOT NULL NUMBER
    COL1 NUMBER
    SQL> show user;
    USER is "DEV"
    SQL> select count(*) from DEV.ATTR_IDX$EX;
    COUNT(*)
    0
    SQL> drop table DEV.ATTR_IDX$EX;
    drop table DEV.ATTR_IDX$EX
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [15265], [], [], [], [], [], [], [],
    SQL> drop table DEV.ATTR_IDX$EX purge;
    drop table DEV.ATTR_IDX$EX purge
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [15265], [], [], [], [], [], [], [],
    I guess this is because it had a parent table, which I dropped (I used "drop table <parent_table>", and it did not give me error, very strange).
    SQL> select dbms_metadata.get_ddl('TABLE','ATTR_IDX$EX') from dual;
    DBMS_METADATA.GET_DDL('TABLE','ATTR_IDX$EX')
    CREATE TABLE "DEV"."ATTR_IDX$EX"
    ( "NODE_ID" NUMBER NOT NULL ENABLE,
    "COL1" NUMBER,
    FOREIGN KEY ("NODE_ID")
    REFERENCES () ON DELETE CASCADE ENABLE
    ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS"
    MONITORING
    Try to drop FK constraints yields the same error.
    So now how can I drop this table table, any work around?
    Thanks.

    This is a bug. There is no Patch avaialble for this yet. This error is seen where recyclebin is enabled. Possible workaround is to disable the recyclebin.
    This happens with the dictionary corruption due to inconsistency between obj$ and seg$.
    This is a correct answer but still i would suggest to contact Oracle support.

  • 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 when delete master rows in a materialized view

    I have a materialized view in 11g2 on Redhat 5, defined asCREATE MATERIALIZED VIEW mv_idty
    PARALLEL BUILD IMMEDIATE REFRESH FAST ON COMMIT ENABLE QUERY REWRITE AS
    select IDTY_NAME_FIRST,IDTY_NAME_MIDDLE,IDTY_NAME_LAST,IDTY_NAME_SUFFIX,IDTY_SSN,
      IDTY_DR_LIC_NUM,IDTY_DR_LIC_STA,x.person_id,i.rowid i_rowid,x.rowid x_rowid
      from idty i,person_x_idty x where x.idty_id=i.idty_id; I deleted a few rows from the master tables and get error13:58:48 SQL> delete idty where  idty_id like 'test_row%' ;
    7 rows deleted.
    13:58:52 SQL> commit;
    commit
    ERROR at line 1:
    ORA-12008: error in materialized view refresh path
    ORA-00600: internal error code, arguments: [kkzfrfajv_markdml-1], [], [], [], [], [], [], [], [], [], [], [] I have other materialized views and they all delete master OK. This is the simplest one but causes problem. HELP!
    Edited by: user13148231 on Aug 11, 2010 5:45 PM

    Checked note 743766.1. It is not 100% relevant as it is about import, but the query is usefulselect sowner, vname, mowner, master from sys.snap_reftime$It reveals the materialized view some how based on other schema.
    Recreate the materialized view. problem solved.

  • 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 while running procedure in oracle 7.3.4

    I am using Oracle 7.3.4 running on HP-Unix. While running a procedure, I am getting the following error.
    ORA-00600: internal error code, arguments: [15419], [severe error during PL/SQL execution], [], [], [], [], [], []
    ORA-06544: PL/SQL: internal error, arguments: [77102], [], [], [], [], [], [], []
    ORA-06553: PLS-801: internal error [77102]
    Please suggest what could be the problem. Incidentally, the same procedure is running on another installation of Oracle 7.3.4. I am unable to find out what could be the difference between the 2 Oracle instances that is causing this problem.
    Please help.
    Thanks in advance.

    Are there any trace files created on the server?
    Did you see if they have any more information?
    Generally, these types of errors suggest contacting Oracle support to resolve the issue, but with the Oracle version you are using being already desupported, it would be an issue.
    Alternatively, you could search metalink to see if there is any support note on this type of error.

  • 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?

  • Err#-600 msg ORA-00600: internal error code, arguments: [4000], [7089]

    Hi All,
    I am getting the error "Err#-600 msg ORA-00600: internal error code, arguments: [4000], [7089]" while running a package. Could not able to get detailed info on this. Please someone help in resolving the above error.
    Thanks,
    Karthi

    http://orafaq.com/wiki/ORA-00600
    You can follow Nikolay's advice or try to find a workaround yourself by rewriting your query using a somehow different approach
    Regards
    Etbin

Maybe you are looking for