ORA-00600 when using sample1

Starting sample1 from the proc demo and entering an employee number shows up:
ORA-00600: internal error code, arguments: [ktsircinfo_num1], [0], [1], [17585], [], [], [], []
which doesn't look like employee data
Same result when trying a select to one of scotts tables with sqlplus.
Uwe

What version of the database?
Which flavor of Disco (Plus, Desktop, Viewer)?
Standars EUL or Apps EUL?
Can you post the code for the calculation?
ORA-600 errors, as you mentioned, are internal, and may require opening a dialog with Oracle support. Then again, it could be something else in the calculation that is causing the sky to fall.

Similar Messages

  • Get ORA-00600 when using ExecuteXmlQuery and NCLOB column

    I am using ODP.NET, I got the following exception:
    at Oracle.DataAccess.Client.OracleCommand.XmlHandleException(OracleException
    e)
    at Oracle.DataAccess.Client.OracleCommand.XmlHandleException(OracleException
    e)
    at Oracle.DataAccess.Client.OracleCommand.ExecuteXmlQuery(Boolean wantResult)
    at Oracle.DataAccess.Client.OracleCommand.ExecuteXmlQuery(Boolean wantResult)
    at Oracle.DataAccess.Client.OracleCommand.ExecuteXmlReader()
    at Oracle.DataAccess.Client.OracleCommand.ExecuteXmlReader()
    at Wikipedia.WikipediaDumpXml.Run() in c:\documents and settings\atali\my doc
    uments\visual studio projects\datacentersolution\wikipedia\wikipediadumpxml.cs:l
    ine 98
    ORA-00600: internal error code, arguments: [kole_t2u], [34], [], [], [], [], [],
    This is my code for retrieving data from database and save it into xml file.
    The "TEXT" column in my select statement is NCLOB. When I leave TEXT column, my query works fine but with it I got exception.
    please, I need help for resolving this issue.
    // Open the connection
    oraConn.Open();
    OracleCommand selectCmd= new OracleCommand( String.Empty, oraConn);
    selectCmd.XmlQueryProperties.RootTag = "Newspaper";
    selectCmd.XmlQueryProperties.RowTag = "Article";
    selectCmd.CommandText= "SELECT ID, TITLE, LANG, TEXT FROM NEWSPAPER_DATA WHERE LANG='en' AND ID=1";
    selectCmd.XmlCommandType=OracleXmlCommandType.Query;
    // execute xml request
    XmlReader newsReader= selectCmd.ExecuteXmlReader();
    // Read
    while(newsReader.Read())
         string xmlfilename = row["TITLE"].ToString();
         using(TextWriter xmlWriter = new StreamWriter( this.DumpDirectory + xmlfilename + ".xml"))
              xmlWriter.Write( newsReader.ReadOuterXml());
    // Close the newsReader
    newsReader.Close();
    oraConn.Close();
    oraConn.Dispose();
    Atali DAOUD

    Mark is correct, you will need to contact support. ORA-600 errors usually require you to patch the database or at least use a workaround to avoid the error.

  • Getting ORA-00600 when using table functions

    Hello,
    I am trying to use simple table function:
    create or replace type StatCall AS OBJECT (
    dial_number varchar2(255),
    start_date date,
    duration number(20)
    create or replace type StatCallSet AS TABLE OF StatCall;
    create or replace package ref IS
    type refcall_t IS REF CURSOR RETURN calls%ROWTYPE;
    end ref;
    create or replace function GetStats(p ref.refcall_t) return StatCallSet pipelined is
    out_rec StatCall;
    in_rec p%ROWTYPE;
    BEGIN
    LOOP
    FETCH p INTO in_rec;
    EXIT WHEN p%NOTFOUND;
    out_rec.dial_number := in_rec.dial_number;
    out_rec.start_date := in_rec.start_date;
    out_rec.duration := in_rec.duration;
    PIPE ROW(out_rec);
    END LOOP;
    CLOSE p;
    RETURN;
    END;
    select * from TABLE(GetStats(CURSOR(select * from call)));
    And I get:
    ORA-00600: internal error code, arguments: [17285], [0xFFFFFFFF7C4900A8], [1], [0x3943BA5E0], [], [], [], []
    Oracle 9.2.0.2
    Are there any ideas about how to fix this?

    What version of the database?
    Which flavor of Disco (Plus, Desktop, Viewer)?
    Standars EUL or Apps EUL?
    Can you post the code for the calculation?
    ORA-600 errors, as you mentioned, are internal, and may require opening a dialog with Oracle support. Then again, it could be something else in the calculation that is causing the sky to fall.

  • Oracle error ORA-00600 when using Oracle 10g and Sun One Web Server 6.1

    I have a java application that was running under Solaris 8 and Oracle 9i. I am trying to get it up and running on a new server that is configured with Solaris 9 and Oracle 10g. Whenever the application tries to connect to the database it receives the following error: ORA-00600 [ttcgcshnd-1][0]. My research indicates that this is an internal Oracle error that represents a low level unexpected condition. I have looked through my configuration for the Web Server and I have not been able to determine the cause of this problem. My DBA tells me that we have the latest patch installed for Oracle! Has anyone encountered this problem before? Any help would be greatly appreciated!

    If the problem is also present in a SWING app, i.e. outside the web server, then it is porbably something external to the webserver.
    I think you should ensure that the driver and database are compatible with each other. It is very likely that you need a new jdbc driver for the new database.
    download from here http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101020.html
    try the ojdbc14.jar

  • URGENT : ORA 302000 when using TEXT_IO.fopen

    Hi,
    I get this error ORA 302000 when using TEXT_IO package, the code I use is
    new_file:=text_io.fopen('c:\text.txt','r')
    i don't have the description of this ORA 302000 , pls does anyone have it?

    Hi,
    I know it's been 2 years but it's still up to date for me.
    I tried the suggested piece of code to trace the error but it did not bring anything more
    EXCEPTION
    When Others then
    srw.Message( 2, 'EXCEPTION ' || SQLCODE || ' in common package. Can not open the file ');
    IF SQLCODE = -302000 then
    LOOP
    EXIT WHEN TOOL_ERR.NERRORS = 0;
    SRW.MESSAGE( 667, TO_CHAR(TOOL_ERR.CODE) || ': ' || TOOL_ERR.MESSAGE);
    TOOL_ERR.POP;
    END LOOP;
    END IF;
    srw.Message( 3, 'EXCEPTION ' || SQLCODE || ' in com package. Can not open the file ' || I_Desname || ' : ' || SQLERRM );
    Only Message 2 and 3 are displayed in the trace file
    Any other suggestion?
    Manu

  • Error ORA-06502 When using function REPLACE in PL/SQL

    Hi,
    I have a PL/SQL procedure which gives error 'Error ORA-06502 When using function REPLACE in PL/SQL' when the string value is quite long (I noticed this with a string 9K in length)
    variable var_a is of type CLOB
    and the assignment statement where it gives the error is
    var_a := REPLACE(var_a, '^', ''',''');
    Can anyone please help!
    Thanks

    Even then that shouldn't do so:
    SQL> select overload, position, argument_name, data_type, in_out
      2  from all_arguments
      3  where package_name = 'STANDARD'
      4  and object_name = 'LPAD'
      5  order by 1,2
      6  /
    OVERLOAD   POSITION ARGUMENT_NAME                  DATA_TYPE                      IN_OUT
    1                 0                                VARCHAR2                       OUT
    1                 1 STR1                           VARCHAR2                       IN
    1                 2 LEN                            BINARY_INTEGER                 IN
    1                 3 PAD                            VARCHAR2                       IN
    2                 0                                VARCHAR2                       OUT
    2                 1 STR1                           VARCHAR2                       IN
    2                 2 LEN                            BINARY_INTEGER                 IN
    3                 0                                CLOB                           OUT
    3                 1 STR1                           CLOB                           IN
    3                 2 LEN                            NUMBER                         IN
    3                 3 PAD                            CLOB                           IN
    4                 0                                CLOB                           OUT
    4                 1 STR1                           CLOB                           IN
    4                 2 LEN                            NUMBER                         INI wonder what happened?

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

  • ORA-00600 when working with packages

    Record/key deleted
    ORA-00600: internal error code, arguments: [kkxpityp1], [], [], [], [], [], [], []
    This is a result of a "SELECT * from table(p_df.r_dochdr(1))"
    where "p_df" is a package, "r_dochdr" is a table function,
    which has a very simple SELECT statement, which is returned through PIPE ROW statement and works fine when called not from this function.
    This error disappears when package is dropped and recrated(recompilation doesn't help) and then appears again after a while.
    Sometimes similar errors appear when I try to recompile the package

    Hi
    You are probably hitting bug# 2136476, i.e. ORA-00600 [KKXPITYP1] WHEN SELECT FROM TABLE FUNCTIONS.
    According to Metalink:
    - Workaround: Do not use functions, which returns types defined inside packages
    - Fixed in 9.2
    Chris

  • ORA-03113 when using connect by in a report query ?

    Hi,
    Oracle 10g r2, ApEx 4.0.2.
    I have a classic report on page zero, I need the following query to display my data :
    select
         distinct '<input class="radio_report_search_photos" name="radio_selected_photo" type="radio" />' as "Sel",
         phot_id,
         phot_description,
         '<img alt="" id="thumb_'||phot_id||'" class="clickable_thumb" src="#OWNER#.show_photo?v_id_photo='||phot_id||'" />' as "Thumb",
         substr(SYS_CONNECT_BY_PATH(kw_text, ', '),3) keyword_list
    from
         select
              phot_id,
              phot_description,
              kw_id,
              kw_text,
              pkw_kw_id,
              pkw_phot_id,
              count(*) OVER(partition by phot_id ) cnt,
              ROW_NUMBER() OVER(partition by phot_id order by kw_text) seq
         from
              photos,
              photos_keywords,
              keywords
         where
              phot_id = pkw_phot_id
              and pkw_kw_id = kw_id
              and contains(kw_text,nvl(:P0_SEARCH_PHOTO_KW,'%')) > 0
    where
         seq = cnt
    start with
         seq = 1
    connect by prior
         seq+1 = seq
    and prior
         phot_id = phot_idIt works great when executing from any software. I get the expected results.
    But yhen I try to put it in the report region source, I get an ORA-03113 when I apply changes...
    It works if I remove CONNECT BY PRIOR and SYS_CONNECT_BY_PATH from the query.
    Why ?
    Thanks.
    Details :
    url : https://my_host.ch/pls/htmldb_dev/wwv_flow.accept
    Error :
    Fri, 22 Jul 2011 09:25:38 GMT
    ORA-03113: end-of-file on communication channel

    OK I now use xmlagg & xmlelement instead of connect by.
    Sorry for not providing any solution.
    Yann.

  • ORA-01194 and ORA-00604 when using backup controlfile set #2

    Database version Oracle 11.2.0.1
    Enterprise Linux 5.4
    Database is in archivelog mode.
    I'm trying to recover a database according to set #2 of a backup controlfile to trace. Creating the controlfile works fine, but recovering the database fails.
    From what I can gather, the recovery fails because it cannot roll forward - sequence 39 is in the missing online redo logfile. However, the database is opened with the restlogs option, and I understand that it should use the archivelogs in order to roll backwards. Since this is a new controlfile it does not know about archivelogs, but it does not accept to register or use any archivelog files.
    The recovery as outlined in set #2 does not seem to work as advertised. Any ideas?
    Following errors:
    SQL>  CREATE CONTROLFILE REUSE DATABASE "RCAT" RESETLOGS  ARCHIVELOG etc.
    Control file created.
    Tyring to register on of the archivelogs does not work:
    SQL>  ALTER DATABASE REGISTER LOGFILE '/u02/fra/RCAT/archivelog/2010_09_19/o1_mf_1_33_69bfo5tx_.arc';
    ALTER DATABASE REGISTER LOGFILE '/u02/fra/RCAT/archivelog/2010_09_19/o1_mf_1_33_69bfo5tx_.arc'
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level
    Applying an existing archivelog during recovery does not work:
    SQL> recover database using backup controlfile until cancel
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    /u02/fra/RCAT/archivelog/2010_09_19/o1_mf_1_33_69bfo5tx_.arc
    ORA-00310: archived log contains sequence 33; sequence 39 required
    ORA-00334: archived log:
    '/u02/fra/RCAT/archivelog/2010_09_19/o1_mf_1_33_69bfo5tx_.arc'
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/u02/RCAT/datafile/o1_mf_system_6959kz7l_.dbf'
    ls -l /u02/fra/RCAT/archivelog/2010_09_19:
    -rw-r----- 1 oracle dba 49313280 Sep 19 00:01 o1_mf_1_33_69bfo5tx_.arc
    -rw-r----- 1 oracle dba   312320 Sep 19 00:03 o1_mf_1_34_69bft63b_.arc
    -rw-r----- 1 oracle dba 20343808 Sep 19 02:10 o1_mf_1_35_69bo6y6j_.arc
    -rw-r----- 1 oracle dba    40960 Sep 19 02:12 o1_mf_1_36_69boc9t8_.arc
    -rw-r----- 1 oracle dba    20992 Sep 19 02:13 o1_mf_1_37_69bofng4_.arc
    -rw-r----- 1 oracle dba   794624 Sep 19 02:15 o1_mf_1_38_69bokwbf_.arcThanks,
    Markus

    Specifying sequence 39 results in the same error message, which is what is what it tries to apply when using "recover until cancel" and typing cancel. But the problem is that sequence 39 was in the online redologs, which were not archived yet.
    SQL> select name, first_change#,next_change# from v$archived_log;
    NAME                                        FIRST_CHANGE# NEXT_CHANGE#
    /u02/fra/RCAT/archivelog/2010_09_19/o1_mf_1_34_69bft63b_.arc        1259096     1259295
    /u02/fra/RCAT/archivelog/2010_09_19/o1_mf_1_37_69bofng4_.arc        1269876     1269935
    /u02/fra/RCAT/archivelog/2010_09_19/o1_mf_1_35_69bo6y6j_.arc        1259295     1269766
    /u02/fra/RCAT/archivelog/2010_09_19/o1_mf_1_36_69boc9t8_.arc        1269766     1269876
    /u02/fra/RCAT/archivelog/2010_09_19/o1_mf_1_38_69bokwbf_.arc        1269935     1270557
    /u02/fra/RCAT/archivelog/2010_09_19/o1_mf_1_33_69bfo5tx_.arc        1241003     1259096
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_21_699l4tkj_.arc        1215727     1215730
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_24_699s5pj8_.arc        1215736     1224966
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_26_699s5rp4_.arc        1224969     1224972
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_15_6987rbqp_.arc        1174393     1174511
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_23_699l4xng_.arc        1215733     1215736
    NAME                                        FIRST_CHANGE# NEXT_CHANGE#
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_28_699s5tqt_.arc        1224975     1224987
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_22_699l4w5r_.arc        1215730     1215733
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_29_699s5vw2_.arc        1224987     1224990
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_19_699l4or0_.arc        1215721     1215724
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_25_699s5qd6_.arc        1224966     1224969
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_30_699s5yvs_.arc        1224990     1224999
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_27_699s5stf_.arc        1224972     1224975
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_32_69b2hgvz_.arc        1225003     1241003
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_17_699k5oxl_.arc        1194778     1209476
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_16_699jsxol_.arc        1174511     1194778
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_20_699l4rx2_.arc        1215724     1215727
    NAME                                        FIRST_CHANGE# NEXT_CHANGE#
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_18_699l4msq_.arc        1209476     1215721
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_14_6987mljx_.arc        1162149     1174393
    /u02/fra/RCAT/archivelog/2010_09_18/o1_mf_1_31_699s61sr_.arc        1224999     1225003
    25 rows selectedHow does it actually know about all the archivelogs?
    Edited by: Markus Waldorf on Sep 20, 2010 8:37 AM

  • ORA-15072 when using external redenacy?

    Hello -
    I am getting ORA-15072 (command required at least one failure groups) when using external redundancy. I am using asmlib on Linux, and I have a feeling that it it a multipathing issue. Here are the output from some of my commands:
    [root@ctolinuxpoc01 init.d]# ./oracleasm listdisks
    VOL1
    VOL10
    VOL11
    VOL12
    VOL2
    VOL3
    VOL4
    VOL5
    VOL6
    VOL7
    VOL8
    VOL9
    SQL> select name, path, state from v$asm_disk;
    NAME
    PATH
    STATE
    ORCL:VOL1
    NORMAL
    ORCL:VOL2
    NORMAL
    NAME
    PATH
    STATE
    ORCL:VOL3
    NORMAL
    ORCL:VOL4
    NAME
    PATH
    STATE
    NORMAL
    Why would I be getting ORA-15072 with external redundancy (using asmlib)?
    Thanks in andvance!
    Mike

    The header status is showing as "unknown"... Could this be part of the issue?
    Thanks,
    Mike

  • I get Ora-00600 when I try to fetch large data via Xml

    Hi all
    I user Oracle8i ver 8.1.6, when I execute the following
    procedure:
    PROCEDURE TTG_EXEC_SQL (SELECT_STATMENT in VarChar2, Result Out
    Clob, err_no Out Number) IS
    -- This Procedure excutes SELECT command and return the result
    data throw Xml CLOB parameter.
    QueryCtx DBMS_XMLquery.CtxType;
    ErrorNum NUMBER;
    ErrorMsg VARCHAR2(200);
    RES1 CLOB;
    Begin
    QueryCtx := DBMS_XMLQuery.NewContext( Select_Statment );
    DBMS_XMLQuery.setRaiseException(QueryCtx, true);
    DBMS_XMLQuery.setRaiseNoRowsException(QueryCtx, true);
    DBMS_XMLQuery.propagateOriginalException(QueryCtx,true);
    ResULT := DBMS_XMLQuery.getXML(QueryCtx);
    DBMS_XMLQuery.CloseContext(QueryCtx);
    Exception
    when others then
    DBMS_XMLQuery.getExceptionContent (QueryCtx,ErrorNum,
    ErrorMsg);
    ERR_NO := NVL(ErrorNum,0);
    END;
    I get Ora-00600 error when the retrived data is more than 800
    records.
    can any one help me Pls ASAP.
    THNX
    Husam

    Can you get the query result with SQL command alone?

  • Running into this ORA-00600 when trying to start up and mount

    oracle 10g release2 RHAS4
    [root@localhost ~]# su - oracle
    [oracle@localhost ~]$ sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Sun Jan 3 14:18:33 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> startup mount
    ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []
    SQL>

    Um, no....at least, not legally.
    Oracle provides free downloads of much of it's software, for free, for development purposes. If you want to do anything real, you're expected to pay for it.
    If that's completely out of the question for you, you should investigate open source alternatives, such as MySQL or PostGreSQL.
    -Mark
    Edited by: mbobak on Jan 4, 2010 6:08 AM

  • Sqlldr producing ora-1008 when using conventional mode

    On 9.2.0.8 Solaris 9,
    When performing the load using direct mode it works. only when using conventional mode i get the error.
    any ideas?
    10x,

    Don't use reserved words (CHAR,which is a format specification) as column names:
    http://download.oracle.com/docs/cd/E11882_01/server.112/e22490/ldr_field_list.htm#i1015797

Maybe you are looking for

  • Sending mails to multiple recipients

    Hi, I need to send an e-mail to multiple recipients, none of which may know that the mail was sent to others as well. Of course, the first idea was to use the BCC-field. However, if I do that, the receipients get a mail with an empty To-Field, which

  • How do i convert a pdf into an xls or csv file

    how do i convert a pdf into an xls or csv file   ? thnx

  • Flash 8 / AS 2.0 for Games Books / websites

    Hello, I will soon start developing a game in Flash (note: not necessarily a webgame - it should be a standalone, also). The game is an isometric managerial simulation, so i would need to learn more not only about isometric tiles, but also data handl

  • Create a large number of purchase order in ME21N

    Hello, Is there a CATT or LSMW transaction or a program to create a large number of purchase orders with the positions? Thanks in advice Fany

  • How to track Hold GRN

    Hello, How to track Hold GRN? Please provide solution for tracking the Hold GRN. Is there any standard or customized report in the system? Can we fetch the data from any standard table ? Regards, Milind Dumbre