ORA-06562: type of out argument must match type of column or bind variab

Hi everybody
I have this -6562 oracle error when running a procedure where ther's the dbms_sql package
here is the code :
PROCEDURE PROC_CREATE_CAT_FILES (
v_period in varchar2,
v_cat_files_dir in varchar2
as
v_detail varchar2(2000);
cursor_name INTEGER;
rows_processed INTEGER;
s_PATHNAME VARCHAR2(300) ;
s_FILENAME VARCHAR(300) ;
bFile_handle UTL_FILE.FILE_TYPE ;
sselect varchar2(2000 ) ;
begin
cursor_name := dbms_sql.open_cursor;
sselect :='select '
|| 'bd.contrno||'';''||'
|| 'bi_ref||'';''||'
|| 'substr(area,2)||'';''||'
|| 'subno||'';''||'
|| 'billtext_4||'';''||'
|| 'to_char(transdatetime,''DD.MM.YYYY'')||'';''||'
|| 'to_char(transdatetime,''HH:MI:SS'')||'';''||''\"''||'
|| 'substr(zode_lang.pr_text,1,14)||''\"''||'';''||''\"''||'
|| 'substr(ctg_lang.pr_text,1,14)||''\"''||'';''||'
|| 'substr(billtext_2,1,20)||'';''||'
|| 'to_char((substr(to_char(bi_quantity,''00000000''),4,2))*60*60+'
|| '(substr(to_char(bi_quantity,''00000000''),6,2))*60+'
|| '(substr(to_char(bi_quantity,''00000000''),8,2)),''FM999999'')||'';''||'
|| 'to_char(nvl(billamount,0),''FM0000.0000'')||'';''||'
|| 'to_char(nvl(vol_discount,0)+nvl(flat_discount,0),''FM0000.0000'')||'';''||'
|| 'to_char(ar_invdate,''DD.MM.YYYY'')||'';''||'
|| 'debamount_cur '
|| 'from '
|| v_bi_dump
|| ' bd,'
|| 'q_arinv_head arh,'
|| 'pr_text_rows ctg_lang,'
|| 'pr_text_rows zode_lang '
|| 'where '
|| 'bd.bi_ref = arh.ar_ref '
|| 'and ''CTG_''||chargetype||''_''||chargetype_group = ctg_lang.pr_field_id '
|| 'and bd.billtext_1 = zode_lang.pr_field_id '
|| 'and ctg_lang.pgm_name = ''Q30INV'' '
|| 'and ctg_lang.language = ''EN'' '
|| 'and zode_lang.pgm_name = ''Q30INV'' '
|| 'and zode_lang.language = ''EN'' '
|| 'and bd.contrno = '
|| v_contrno
|| ' and bd.bi_ref = '
|| v_invoice_no
dbms_sql.parse(cursor_name,sselect,dbms_sql.v7);
dbms_sql.define_column_char(cursor_name,1,v_detail,2000);
rows_processed := dbms_sql.execute(cursor_name);
loop
if dbms_sql.fetch_rows(cursor_name) > 0 then
dbms_sql.column_value(cursor_name,1,v_detail);
the problem is the last line, the variable v_detail is varchar2, but seems to not match the result of the query where there's the big string.
thanks for your help
Alain

I guess that the ORA itself is giving some clues why you failed to do what you intended.
http://download.oracle.com/docs/cd/B10501_01/server.920/a96525/e12700.htm#1006284
So it seems like [exchanging partitions|http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/partiti.htm#sthref2762] between composit partitioned table and noncomposit partitioned table will not work.
See 198120.1 , you are propably trying to do exchange between unsuported combination of partitioning types.

Similar Messages

  • Reg: PLS-00418: array bind type must match PL/SQL table row type error

    I am trying to access a table of records through JDBC OracleCallableStatement. I am able to do it fine for all mappings except for the ones below
    TYPE CAT_CD_TYPE IS TABLE OF A.B %TYPE INDEX BY BINARY_INTEGER;
    TYPE ORG_CD_TYPE IS TABLE OF C.D %TYPE INDEX BY BINARY_INTEGER;
    Column B is CHAR(1) and Column D is CHAR(2). I am trying to register the out parameters of Oraclecallablestatement as
    cstmt.registerIndexTableOutParameter(2, 2000, OracleTypes.CHAR, 0);
    cstmt.registerIndexTableOutParameter(3, 2000, OracleTypes.CHAR, 0);
    All the other mappings work fine. These two fail with the error
    SQLException in invokeDBPackage() : ORA-06550: line 1, column 32:
    PLS-00418: array bind type must match PL/SQL table row type
    ORA-06550: line 1, column 35:
    PLS-00418: array bind type must match PL/SQL table row type
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    I tried other OracleTypes mappings too but no luck so far.
    Any advice on this would be greatly appreciated.

    Hi,
    I'm not sure it's reasonable to expect someone to sift through that much stuff.
    Which parameter is it having a problem with?
    Can you modify the following to reproduce the behavior?
    Thanks
    Greg
    create package mypack5 as
    TYPE v2array is table of emp.ename%type index by BINARY_INTEGER;
    PROCEDURE test_it(thearray IN v2array, numrecs out number);
    END;
    CREATE or replace PACKAGE BODY MYPACK5 AS
    PROCEDURE test_it(thearray IN v2array, numrecs out number)
    IS
    begin
    numrecs := thearray.count;
    END;
    END;
    using System;
    using System.Data;
    using Oracle.DataAccess.Client;
    public class indexby
    public static void Main()
    OracleConnection con = new OracleConnection("data source=orcl;user id=scott;password=tiger;");
    con.Open();
    OracleCommand cmd = new OracleCommand("mypack5.test_it", con);
    cmd.CommandType = CommandType.StoredProcedure;
    OracleParameter Param1 = cmd.Parameters.Add("param1", OracleDbType.Varchar2);
    Param1.Direction = ParameterDirection.Input;
    Param1.CollectionType = OracleCollectionType.PLSQLAssociativeArray;
    Param1.Size = 3;
    string[] vals = { "foo", "bar", "baz" };
    Param1.Value = vals;
    OracleParameter Param2 = cmd.Parameters.Add("param2", OracleDbType.Int32, DBNull.Value, ParameterDirection.Output);
    cmd.ExecuteNonQuery();
    Console.WriteLine("{0} records passed in", Param2.Value);
    con.Close();
    }

  • PLS-00418: array bind type must match PL/SQL table row type

    If a PL/SQL table is indexed by CHAR and is a parameter
    in a Stored Program, we are not able to call the stored
    program from the Java code.
    We get the following error code.
    java.sql.SQLException: ORA-06550: line 1, column 62:
    PLS-00418: array bind type must match PL/SQL table row type
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    But if we change the CHAR into VARCHAR2 then it works.
    We are using Oracle9i Enterprise Edition Release 9.2.0.5.0 -64bit Production ,
    JServer Release 9.2.0.5.0 - Production
    and JDK1.4.
    Thanks
    Push..

    Hi,
    I'm not sure it's reasonable to expect someone to sift through that much stuff.
    Which parameter is it having a problem with?
    Can you modify the following to reproduce the behavior?
    Thanks
    Greg
    create package mypack5 as
    TYPE v2array is table of emp.ename%type index by BINARY_INTEGER;
    PROCEDURE test_it(thearray IN v2array, numrecs out number);
    END;
    CREATE or replace PACKAGE BODY MYPACK5 AS
    PROCEDURE test_it(thearray IN v2array, numrecs out number)
    IS
    begin
    numrecs := thearray.count;
    END;
    END;
    using System;
    using System.Data;
    using Oracle.DataAccess.Client;
    public class indexby
    public static void Main()
    OracleConnection con = new OracleConnection("data source=orcl;user id=scott;password=tiger;");
    con.Open();
    OracleCommand cmd = new OracleCommand("mypack5.test_it", con);
    cmd.CommandType = CommandType.StoredProcedure;
    OracleParameter Param1 = cmd.Parameters.Add("param1", OracleDbType.Varchar2);
    Param1.Direction = ParameterDirection.Input;
    Param1.CollectionType = OracleCollectionType.PLSQLAssociativeArray;
    Param1.Size = 3;
    string[] vals = { "foo", "bar", "baz" };
    Param1.Value = vals;
    OracleParameter Param2 = cmd.Parameters.Add("param2", OracleDbType.Int32, DBNull.Value, ParameterDirection.Output);
    cmd.ExecuteNonQuery();
    Console.WriteLine("{0} records passed in", Param2.Value);
    con.Close();
    }

  • Error - The file must match the template type. Upload one file per language

    hi,
    Error - The file must match the template type. Upload one file per language and territory combination.
    i am getting above error while registering RTF template in oracle application e -business suite using XML publisher admistrator responsibility.
    My work :
    i generated xml output using concurrent program.
    for this i used standard PO report,
    the executable name: POXPRPOP.
    i designed the template using MS Office word (for RTF template)
    for this :
    <?start: body?>
    <? for-each: G_Headers?>
    VENDOR:
    <?POH_VENDOR_NAME?>
    <?POH_VENDOR_COUNTRY?>
    PURCHASEORDER NO.
    <?POH_PO_NUM?>
    SHIP TO:
    <?C_COMPANY?>
    <?POH_SHIP_ADDRESS_LINE1?>
    <?POH_SHIP_COUNTRY?>
    BILL TO:
    <?C_COMPANY?>
    <?POH_BILL_ADDRESS_LINE1?>
    <?POH_BILL_COUNTRY?>
    <?end for-each?>
    <?end body?>
    saved this file as "Purchasing.rtf" on desk top
    i registered data definition
    name:purchase order data definition.
    code : short name of concurrent program.
    i try to create template Or register the template in oracle e-business suite.
    name: purchasing template
    code: concurrent program short name
    type : RTF.
    file : browse from desk top (purchasing.rtf)
    language:english
    territory: US.
    but i am getting above error
    could any one help to come out of this problem.
    thank you
    regarding,
    sai krishna@cavaya

    Hi,
    I am getting the error as
    The file must match the template type. Upload one file per language and territory combination.
    I have checked the template name. It doesn't exist already. Please help me.
    Thanks in Advance,
    Jeganathan

  • ORA-02256: number of referencing columns must match referenced columns

    Hi,
    I have the following script;:
    But when I execute the script, TOAD gives me in line "create table recipiente", (I have put in bold the line), the following error: ORA-02256: number of referencing columns must match referenced columns. But I don´t know where is the error.
    create table bodega
    ( nombrebodega varchar2(50) primary key,
    localidad varchar2(50),
    nombredueño varchar2(50),
    telefono varchar2(50),
    museo char(1),
    logo blob
    create table vino
    ( tipovino varchar2(50),
    categoriavino varchar2(50),
    anovendimia number(4),
    nombrebodega varchar2(50),
    denominacionorigen varchar2(50),
    precio_lproduc number(5),
    litrosproduc number(10),
    precio_lpublico number(5),
    primary key (tipovino,categoriavino,anovendimia,nombrebodega),
    foreign key (nombrebodega) references bodega on delete cascade
    create table recipiente <-- Here gives me the error
    ( idrecipiente number(2) primary key,
    capacidad number(10),
    clase varchar2(50),
    tipovino varchar2(50) not null,
    categoriavino varchar2(50) not null,
    anovendimia number(4) not null,
    nombrebodega varchar2(50) not null,
    foreign key (tipovino) references vino on delete cascade,
    foreign key (categoriavino) references vino on delete cascade,
    foreign key (anovendimia) references vino on delete cascade,
    foreign key (nombrebodega) references vino on delete cascade
    Anybody could help me?
    Thanks. Regards

    check:
    SQL> create table bodega
      2  ( nombrebodega varchar2(50) primary key,
      3  localidad varchar2(50),
      4  nombredueo varchar2(50),
      5  telefono varchar2(50),
      6  museo char(1),
      7  logo blob
      8  );
    Table created.
    SQL> create table vino
      2  ( tipovino varchar2(50),
      3  categoriavino varchar2(50),
      4  anovendimia number(4),
      5  nombrebodega varchar2(50),
      6  denominacionorigen varchar2(50),
      7  precio_lproduc number(5),
      8  litrosproduc number(10),
      9  precio_lpublico number(5),
    10  primary key (tipovino,categoriavino,anovendimia,nombrebodega),
    11  foreign key (nombrebodega) references bodega on delete cascade
    12  );
    Table created.
    SQL> create table recipiente
      2  ( idrecipiente number(2) primary key,
      3  capacidad number(10),
      4  clase varchar2(50),
      5  tipovino varchar2(50) not null,
      6  categoriavino varchar2(50) not null,
      7  anovendimia number(4) not null,
      8  nombrebodega varchar2(50) not null,
      9  foreign key (tipovino) references vino(tipovino) on delete cascade,
    10  foreign key (categoriavino) references vino(categoriavino) on delete cascad
    e,
    11  foreign key (anovendimia) references vino(anovendimia) on delete cascade,
    12  foreign key (nombrebodega) references vino(nombrebodega) on delete cascade
    13  );
    foreign key (tipovino) references vino(tipovino) on delete cascade,
    ERROR at line 9:
    ORA-02270: no matching unique or primary key for this column-list
    SQL> alter table vino add constraint vino_uk unique (tipovino);
    Table altered.
    SQL> alter table vino add constraint categoriavino_uk unique (categoriavino);
    Table altered.
    SQL> alter table vino add constraint anovendimia_uk unique (anovendimia);
    Table altered.
    SQL> alter table vino add constraint nombrebodega_uk unique (nombrebodega);
    Table altered.
    SQL> create table recipiente
      2  ( idrecipiente number(2) primary key,
      3  capacidad number(10),
      4  clase varchar2(50),
      5  tipovino varchar2(50) not null,
      6  categoriavino varchar2(50) not null,
      7  anovendimia number(4) not null,
      8  nombrebodega varchar2(50) not null,
      9  foreign key (tipovino) references vino(tipovino) on delete cascade,
    10  foreign key (categoriavino) references vino(categoriavino) on delete cascad
    e,
    11  foreign key (anovendimia) references vino(anovendimia) on delete cascade,
    12  foreign key (nombrebodega) references vino(nombrebodega) on delete cascade
    13  );
    Table created.Amiel

  • 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, 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, arguments: [qctcte1]

    Hi All,
    While executing a mapping I got the following error message:
    Starting Execution MAP39_FACT
    Starting Task MAP39_FACT
    ORA-00600: internal error code, arguments: [qctcte1], [0], [], [], [], [], [], []
    ORA-06512: at "SBI_TARGET_P2.MAP39_FACT", line 12
    ORA-06512: at "SBI_TARGET_P2.MAP39_FACT", line 8997
    ORA-06512: at "SBI_TARGET_P2.MAP39_FACT", line 9486
    ORA-06512: at "SBI_TARGET_P2.MAP39_FACT", line 12000
    ORA-06512: at line 1
    Completing Task MAP39_FACT
    Completing Execution MAP39_FACT
    When I trace the Alert log I find the error to be of a mismatch data type .But there arent any mismatch in any of the operators in my mapping.
    As a rescue I tried making an altogether new mapping but m still getting the same error. All the other mappings in my project are running fine.
    Any Solutions??

    Hello,
    Accoding to metalink info this ORA-600 could be reported as a result of several bugs, depending on your RDBMS version and mapping schema.
    The note 248095.1 is entry point. Find below the exclusion from the note:
    Known Issues:
    Bug# 3963092 See Note 3963092.8
    OERI[qctcte1] compiling SQL with ORDER BY .. DESC
    Fixed: 10.1.0.4, 10.2.0.1
    Bug# 3730166 See Note 3730166.8
    OERI [qctcte1] / [kghssgcop2] from ANSI outer joins with binds
    Fixed: 10.1.0.5, 10.2.0.1
    Bug# 3557906 See Note 3557906.8
    OERI[qctcte1] from predicate move around
    Fixed: 9.2.0.6, 10.1.0.4, 10.2.0.1
    Bug# 3216046 See Note 3216046.8
    OERI:qctcte1 running a query with a subquery in SELECT list
    Fixed: 9.2.0.5, 10.1.0.2
    Bug# 3121670 See Note 3121670.8
    OERI:qctcte1 can occur on VIEW with HAVING clause with STAR transformation
    Fixed: 9.2.0.5, 10.1.0.2
    Bug# 3110923 See Note 3110923.8
    Dump (in qmxtrxopt) using ORDER BY .. DESC on a CONSTANT column
    Fixed: 9.2.0.5
    Bug# 2458655 See Note 2458655.8
    OERI[QCTCTE1] from FULL OUTER JOIN with BIND variable in subquery
    Fixed: 9.2.0.3, 10.1.0.2
    Bug# 2357784 See Note 2357784.8
    OERI[QCTCTE1] parsing ANSI OUTER JOIN with a VIEW with a SET operation (eg: UNION ALL)
    Fixed: 9.2.0.2
    Bug# 2105452 See Note 2105452.8
    OERI:QCTCTE1 possible from inline UNION view with binds
    Fixed: 9.0.1.4, 9.2.0.1
    Bug# 2100837 See Note 2100837.8
    OERI:QCTCTE1 possible using INLIST predicates
    Fixed: 9.0.1.3, 9.2.0.1
    Bug# 2092554 See Note 2092554.8
    OERI:qctcte1 / ORA-979 from multi-hierarchy query using materialized view
    Fixed: 9.0.1.3, 9.2.0.1
    Bug# 1970507 See Note 1970507.8
    OERI:18096 from OUTER JOIN in MERGE USING clause in PLSQL
    Fixed: 9.0.1.2, 9.2.0.1

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

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

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

  • ?Problem of :: "web-app" must match, help me?

    hi,Experts,
    Please do me a big favor, Does anybody know what is the exatly problem with my web.xml.
    My tomcat version is Apache Tomcat/4.1.18.
    here is the web.xml:
    <!DOCTYPE web-app PUBLIC
    "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <display-name>newGUI</display-name>
    <description>The Database</description>
    <!--Filter Definitions-->
    <filter>
    <filter-name>theFilter</filter-name>
    <filter-class>org.gui.myFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>theFilter</filter-name>
    <url-pattern>/fetch.jsp</url-pattern>
    </filter-mapping>
    <filter>
    <filter-name>theFilter</filter-name>
    <filter-class>org.gui.myFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>theFilter</filter-name>
    <url-pattern>/query.jsp</url-pattern>
    </filter-mapping>
    <!-- Taglib Definitions-->
    <taglib>
    <taglib-uri>
    http://jsptags.com/tags/navigation/pager
    </taglib-uri>
    <taglib-location>
    /WEB-INF/jsp/pager-taglib.tld
    </taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/jstl-c</taglib-uri>
    <taglib-location>/WEB-INF/c.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/jstl-x</taglib-uri>
    <taglib-location>/WEB-INF/x.tld</taglib-location>
    </taglib>
    </web-app>
    The error message is :
    SEVERE: Parse Error at line 66 column 11: The content of element type "web-app" must match "(icon?,display-name?,description?,distributable?,context-param*,filter*,filter-mapping*,listener*,
    servlet*,servlet-mapping*,session-config?,mime-mapping*,welcome-file-list?,error-page*,taglib*,
    resource-env-ref*,resource-ref*,security-constraint*,login-config?,security-role*,env-entry*,ejb-ref*,
    ejb-local-ref*)".

    It is telling you either you have elements out of order, or elements that do not belong.
    Try to do:
    <filter>
      <filter-name>theFilter</filter-name>
      <filter-class>org.gui.myFilter</filter-class>
    </filter>
    <filter>
      <filter-name>theFilter</filter-name>
      <filter-class>org.gui.myFilter</filter-class>
    </filter>
    <filter-mapping>
      <filter-name>theFilter</filter-name>
      <url-pattern>/fetch.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
      <filter-name>theFilter</filter-name>
      <url-pattern>/query.jsp</url-pattern>
    </filter-mapping>Then double check spelling and such.

  • Session State Protection - Arguments must have Checksum - Help Required

    Hi everyone,
    I am using apex 4.0 and have set:
    Session State Protection = True
    Page Access Protection = Arguments must have checksum
    Application Item Protection = Cecksum required - Session Level
    Page Data Entry Item Protection = Cecksum required - Session Level
    Page Display-Only Item Protection = Cecksum required - Session Level
    On pages which contain a Interactive report the calls to other pages to update and or delete a record passing the PK of the record work OK.
    I have set these as follows:
    In the Interactive report LInk Colomn --> Link Attribute = onclick="new top.Ext.apex.PopupWindow( { url: this.href, title: 'Edit Classification Details', width: 530, height: 500, listeners: {'success': gReport.search} } ).show(); return false;"
    Target = Page in this Application
    Page = 302Item = P302_IDCLASS
    Value = #IDCLASS#
    Page Checksum = - User Default -
    The problem is on the "Create new record" button which is located on the Interactive report page. I have defined the button as:
    Button Attributes = onclick="new top.Ext.apex.PopupWindow({ url:'f?p=&APP_ID.:302:&APP_SESSION.::NO:302::::', title: 'Create New Classification', width: 530, height: 500, listeners: {'success': gReport.search} }).show(); return false;"
    Action when button click = Redirect to Page in this Application
    Page = 302
    Clear Cache = 302
    When I click the button I get the following message:
    Session state protection violation: This may be caused by manual alteration of a URL containing a checksum or by using a link with an incorrect or missing checksum. If you are unsure what caused this error, please contact the application administrator for assistance.
    If I change the Button attributes to be:
    onclick="new top.Ext.apex.PopupWindow({ url:'f?p=&APP_ID.:302:&APP_SESSION.::NO:::::', title: 'Create New Classification', width: 530, height: 500, listeners: {'success': gReport.search} }).show(); return false;"
    It works OK, bu the page items are not clear.
    Could someone please explaing to me what am I doing wrong so I understand my mistake ?
    Thank you
    Daniel

    Here's an interesting situation. I have been having great results with the prepare_url function, until I needed to pass a column value from a report into a popup.
    Originally, in the Column Link --> URL in the Report Attributes I had this. This worked great when there was no session state protection enabled.
    javascript:popUp('f?p=&APP_ID.:17:&SESSION.::&DEBUG.:17:P17_EVENT_LOG_ID:#EVENT_LOG_ID#','450','375');When I enabled session state protection and changed the URL link to this
    javascript:popUp('&VW_EVENT_LOG.','450','375');and then created an application item and computation in order to pass a checksum along
    APEX_UTIL.PREPARE_URL (
      p_url => 'f?p=&APP_ID.:17:&SESSION.::&DEBUG.:17:P17_EVENT_LOG_ID:#EVENT_LOG_ID#',
      p_checksum_type => 3
    );the checksum seems to get passed fine, but the column value for the EVENT_LOG_ID is being concatenated to the end of the checksum instead of being passed as the value for P17_EVENT_LOG_ID. I also noticed that the clear cache page (17) looks like it is also being attached to the beginning of P17_.., but I'm not sure if that's to be expected or not.
    It took me a while to figure it out, but when I started looking at the error message closely, I could see that the checksum is identical except for the last two digits, which coincidentally are the same as the ID for this record.
    The checksum computed on the request, clear cache, argument names,
    and argument values (17P17_EVENT_LOG_ID [C6161B29B4C078F68DCF430133407754] ) did not match the checksum
    passed into the show procedure (C6161B29B4C078F68DCF43013340775490). Any thoughts on how to pass a column value with a checksum to a popup window?
    Thanks,
    Joe

  • "Trip currency *** must match currency ### of total amount"

    Hello T&E Experts,
    We have the following scenario in T&E;
    Scenario: This is related to the Amex upload (we are using the GL1025 file) for transactions happening in foreign currency. E.g. A Canadian employee travels to US and swipes his card, the Amex file captures all the details including the exchange rate to be used, when this file is uploaded
    the transactions error out and we get the following message;
    “Trip currency CAD must match currency USD of total amount”
    We have all the currency related setting in place i.e. have maintained the exchange rate types for the combination and also the exchange
    rate.
    Wanted to check out with have you all faced similar issues in any of your T&E implementation and is there a configuration that we are missing to get this resolved.
    Thanks in advance,
    Amit Sheth

    Hi Amit,
    Need some clarifications on your issue.
    Where you are getting this error message means in which transaction?
    What is the type/structure of your Amex file using for upload?
    Can you provide the exchange rate types screenshot.
    For all the employees or only for specific employee, you are getting this error?
    If possible, better to provide the process flow of "Data upload to Amex" which means, the from SAP system to Amex.
    Regards,
    Narayana

  • Getting ORA-0600 internal error code, arguments: [kdlx_logmnr_decompress

    Hi,
    We are getting this error for the capture process:
    ORA-00600: internal error code, arguments: [kdlx_logmnr_decompress : incorrect unit length passed], [16120], [6225], [0], [22044], [], [], [], [], [], [], []
    OPIRIP: Uncaught error 447. Error stack:
    ORA-00447: fatal error in background process
    That is aborting capture queue whenever we restart. I tried by re-installing Oracle but after sometime again this issue arises.
    I am new to replication thing, so don't have too much idea about this error. Following is trace file log of the error :
    *** 2013-02-06 17:04:07.311
    ORA-00600: internal error code, arguments: [kdlx_logmnr_decompress : incorrect unit length passed], [16120], [6225], [0], [22044], [], [], [], [], [], [], []
    *** 2013-02-06 17:04:51.995
    *** 2013-02-06 17:04:52.033
    Begin knlcDumpCapCtx:*******************************************
    Error 600 : ORA-00600: internal error code, arguments: [kdlx_logmnr_decompress : incorrect unit length passed], [16120], [6225], [0], [22044], [], [], [], [], [], [], []
    Capture Name: GENEVA1$CAP : Instantiation#: 2
    *** 2013-02-06 17:04:52.033
    ++++ Begin KNST dump for Sid: 1059 Serial#: 171
    Init Time: 01/31/2013 14:55:49
    ++++Begin KNSTCAP dump for : GENEVA1$CAP
    Capture#: 1 Logminer_Id: 1 State: CREATING LCR [ 02/06/2013 17:04:06]
    Capture_Message_Number: 0x0000.045b8dd0 [73108944]
    Capture_Message_Create_Time: 02/06/2013 17:04:05
    Enqueue_Message_Number: 0x0000.045b8dc8 [73108936]
    Enqueue_Message_Create_Time: 02/06/2013 17:04:05
    Total_Messages_Captured: 4544100
    Total_Messages_Created: 963971 [ 02/06/2013 17:04:06]
    Total_Messages_Enqueued: 987271 [ 02/06/2013 17:04:06]
    Total_Full_Evaluations: 10970
    Elapsed_Capture_Time: 52593362 Elapsed_Rule_Time: 59
    Elapsed_Enqueue_Time: 0 Elapsed_Lcr_Time: 1937
    Elapsed_Redo_Wait_Time: 0 Elapsed_Pause_Time: 0
    Apply_Name : APPLY$_GENEVA1_137
    Apply_DBLink : GENEVA2
    Apply_Messages_Sent: 0
    ++++End KNSTCAP dump
    ++++ End KNST DUMP
    +++ Begin DBA_CAPTURE dump for: GENEVA1$CAP
    Capture_Type: LOCAL
    Version: 11.2.0.1.0
    Source_Database: GENEVA1
    Use_Database_Link: NO
    Logminer_Id: 1 Logfile_Assignment: IMPLICIT
    Status: ENABLED
    First_Scn: 0x0000.041c5812 [68966418]
    Start_Scn: 0x0000.041c5812 [68966418]
    Captured_Scn: 0x0000.045b6bea [73100266]
    Applied_Scn: 0x0000.045b56cd [73094861]
    Last_Enqueued_Scn: 0x0000.045b8dc8 [73108936]
    Capture_User: STRMADMIN
    Queue: STRMADMIN.GENEVA1$CAPQ
    Rule_Set_Name[+]: "STRMADMIN"."RULESET$_13"
    Negative_Rule_Set_Name: "STRMADMIN"."RULESET$_38"
    Checkpoint_Retention_Time: 60
    +++ End DBA_CAPTURE dump
    +++ Begin DBA_CAPTURE_PARAMETERS dump for: GENEVA1$CAP
    PARALLELISM = 1 Set_by_User: NO
    STARTUP_SECONDS = 0 Set_by_User: NO
    TRACE_LEVEL = 0 Set_by_User: NO
    TIME_LIMIT = -1 Set_by_User: NO
    MESSAGE_LIMIT = -1 Set_by_User: NO
    MAXIMUM_SCN = 0xffff.ffffffff [281474976710655] Set_by_User: NO
    WRITE_ALERT_LOG = TRUE Set_by_User: NO
    DISABLE_ON_LIMIT = FALSE Set_by_User: NO
    DOWNSTREAM_REAL_TIME_MINE = TRUE Set_by_User: NO
    MESSAGE_TRACKING_FREQUENCY = 2000000 Set_by_User: NO
    SKIP_AUTOFILTERED_TABLE_DDL = TRUE Set_by_User: NO
    SPLIT_THRESHOLD = 1800 Set_by_User: NO
    MERGE_THRESHOLD = 60 Set_by_User: NO
    +++ End DBA_CAPTURE_PARAMETERS dump
    +++ Begin DBA_CAPTURE_EXTRA_ATTRIBUTES dump for: GENEVA1$CAP
    +++ End DBA_CAPTURE_EXTRA_ATTRIBUTES dump
    ++ LogMiner Session Dump Begin::
    SessionId: 1 SessionName: GENEVA1$CAP
    Start SCN: 0x0000.00000000 [0]
    End SCN: 0x0000.00000000 [0]
    Processed SCN: 0x0000.045b94b4 [73110708]
    Prepared SCN: 0x0000.045b94b4 [73110708]
    Read SCN: 0x0000.045b94b6 [73110710]
    Spill SCN: 0x0000.041c5812 [68966418]
    Resume SCN: 0x0000.00000000 [0]
    Branch SCN: 0x0000.00000000 [0]
    Branch Time: 01/01/1988 00:00:00
    ResetLog SCN: 0x0000.000e6c20 [945184]
    ResetLog Time: 01/31/2013 12:40:10
    DB ID: 1299957605 Global DB Name: GENEVA1
    krvxvtm: Enabled threads: 1
    Current Thread Id: 1, Thread State 0x01
    Current Log Seqn: 695, Current Thrd Scn: 0x0000.045b94b6 [73110710]
    Current Session State: 0x800, Current LM Compat: 0xb200000
    Flags: 0x3fa802d0, Real Time Apply is On
    +++ Additional Capture Information:
    Capture Flags: 266245
    Logminer Start SCN: 0x0000.041c5812 [68966418]
    Enqueue Filter SCN: 0x0000.041c5812 [68966418]
    Low SCN: 0x0000.045b8dd0 [73108944]
    Capture From Date: 01/01/1988 00:00:00
    Capture To Date: 01/01/1988 00:00:00
    Restart Capture Flag: NO
    Ping Pending: NO
    Buffered Txn Count: 0
    -- Xid Hash entry --
    Begin knlcDumpLobHash for XID: xid: 0x000e.007.00000453
    Lcr Count: 5 Flags: 82
    NO LCRs BUFFERED
    TAG is null
    End knlcDumpXidHash
    -- LOB Hash entry --
    Begin knlcDumpLobHash:
    Xid: Dumping Lob Hash Key-->
    xid: 0x000e.007.00000453 segcol:9 intcol:0 objn:76707 objv:1 thread:1
    rba: 0x0002b6.00005b29.0130 <--Done Dumping Lob Hash Key
    Offset: 32241 Sequence: 5 Long_Flag: FALSE
    gld2status: 213 lau boundary: FALSE
    Buffered LCR dump:
    Dumping lcr 0x7f415e15e0e8 : type 0
    Dumping internal row LCR
    (xid,scn,instnum,scnseq,flags,time,compat,compat_num)
    =(0x000e.007.00000453,0x0000.045b8dc7,0,0,0x0, 02/06/2013 17:04:05,9.2.0.0.0,0)
    header null flags = 0Xf7f0
    gdbnm=0x7f415e15db68, GENEVA1
    tag is null
    UBA = 0X3.c0056b.7.18.1.12bcf
    tde key id=0
    Message tracking: null
    Header extra: null
    child_xid (null)
    (lid_scn,lid_lid_scn_sqn,lcr_sqn,thread_id)=(0x0000.045b8dc7,3,1,1)
    parent_xid (null)
    Duration based allocation:DUR:10
    (obj#,ver,opnum)=(76707,1,9)
    offset = 0, size = 0, dml_id = 0, flags = 0x0
    knglrowx: flags=0x0, seq#=0, thread=0, userdata=0, RBA= rba: 0x000000.00000000.0000 knglrowx: srccsetid=0, flags2=0x0
    knglrowx: sys_part_nm (null)
    Old column count 0
    New column count 11
    segcol = 1, intcol = 1, flags 0, flags3 0 knglcolx: null
    allocsz=2 dtytyp=2 csetform=0 ptr=0x7f415e15d318
    (dty, kncdty, acl, csf, csi, ind)=(2,0,2,0,0,0)
    value = 10
    segcol = 2, intcol = 2, flags 0, flags3 0 knglcolx: null
    allocsz=51 dtytyp=1 csetform=0 ptr=0x7f415e15d2b8
    (dty, kncdty, acl, csf, csi, ind)=(1,0,51,0,0,0)
    value = putGetBytes8MBData_06_02_2013_17_04_619210585076288
    segcol = 3, intcol = 3, flags 0, flags3 0 knglcolx: null
    allocsz=2 dtytyp=2 csetform=0 ptr=0x7f415e15d288
    (dty, kncdty, acl, csf, csi, ind)=(2,0,2,0,0,0)
    value = 1
    segcol = 4, intcol = 4, flags 0, flags3 0 knglcolx: null
    allocsz=2 dtytyp=2 csetform=0 ptr=0x7f415e15d258
    (dty, kncdty, acl, csf, csi, ind)=(2,0,2,0,0,0)
    value = 56
    segcol = 5, intcol = 5, flags 0, flags3 0 knglcolx: null
    allocsz=2 dtytyp=2 csetform=0 ptr=0x7f415e15d228
    (dty, kncdty, acl, csf, csi, ind)=(2,0,2,0,0,0)
    value = 1
    segcol = 6, intcol = 6, flags 0, flags3 0 knglcolx: null
    allocsz=11 dtytyp=180 csetform=0 ptr=0x7f415e15d1f8
    (dty, kncdty, acl, csf, csi, ind)=(180,0,11,0,0,0)
    value = 2013-02-06 11:34:05.582000000
    segcol = 7, intcol = 7, flags 0, flags3 0 knglcolx: null
    allocsz=7 dtytyp=180 csetform=0 ptr=0x7f415e15d1c8
    (dty, kncdty, acl, csf, csi, ind)=(180,0,7,0,0,0)
    value = 1970-01-01 00:00:00
    segcol = 8, intcol = 8, flags 0, flags3 0 knglcolx: null
    allocsz=11 dtytyp=180 csetform=0 ptr=0x7f415e15d198
    (dty, kncdty, acl, csf, csi, ind)=(180,0,11,0,0,0)
    value = 2013-02-06 11:34:05.582000000
    segcol = 9, intcol = 9, flags 1, flags3 0 knglcolx: null
    allocsz=0 dtytyp=23 csetform=0 ptr=(nil)
    LOB DATA
    segcol = 10, intcol = 10, flags 0, flags3 0 knglcolx: null
    allocsz=0 dtytyp=23 csetform=0 ptr=(nil)
    value = NULL
    segcol = 11, intcol = 11, flags 0, flags3 0 knglcolx: null
    allocsz=2 dtytyp=2 csetform=0 ptr=0x7f415e15d168
    (dty, kncdty, acl, csf, csi, ind)=(2,0,2,0,0,0)
    value = 1
    End knlcDumpLobHash
    -- No TRIM LCR --
    Unsupported Reason: Unknown
    ++++++++++++ Dumping Current LogMiner Lcr: +++++++++++++++
    ++ LCR Dump Begin: 0x15b44d160 - lob_write
    op: 10, Original op: 10, baseobjn: 76707, objn: 76707, objv: 1
    DF: 0x00020803, DF2: 0x00002010, MF: 0x00040000, MF2: 0x00000040
    PF: 0x00000000, PF2: 0x00000000
    MergeFlag: 0x03, FilterFlag: 0x09
    Id: 0, iotPrimaryKeyCount: 0, numChgRec: 1
    NumCrSpilled: 0
    RedoThread#: 1, rba: 0x0002b6.00005ba1.017c
    scn: 0x0000.045b8dd0, (scn: 0x0000.045b8dd0, scn_sqn: 5, lcr_sqn: 1)xid: 0x000e.007.00000453, parentxid: 0x000e.007.00000453, proxyxid: 0x0000.000.00000000
    ncol: 11 newcount: 1, oldcount: 0
    LUBA: 0x3.c0056b.7.1b.12bcf
    GroupThreadId: 1, GroupRba: rba: 0x0002b6.00005b29.0130
    LOB info: length: 6225, LOB offset: 0, LOB CodePoint Offset: 0
    LOB ID: 0x0001000cc333
    Filter Flag: KEEP
    ++ KRVXOA Dump Begin:
    Object Number: 76707 BaseObjNum: 76707 BaseObjVersion: 1
    Object Name: GENEVA_OWNER1.GNV_AST_PLD_56 Type: 2
    User Cols: 11, Int Cols: 11, Kernel Cols: 11
    Tab Flag: 0x40000001, Trig Flags: 0x00, OBJ$ Flags: 0x00
    Property: 0x20040820, Attribute: 0x1c7f
    Unsupported Columns: 0x0
    End knlcDumpCapCtx:*********************************************
    Please help me out to get rid of this issue.
    Thanks,
    Heshang

    Hi,
    To further diagnose this issue, please open a service request with oracle support. As there are related issue but they are fixed in 12C.
    Thanks,
    Reena Chhabra

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

    Dear all,
    we are getting the following errors in our alert file.
    Errors in file /oracle8i/oracle/app/admin/sbidpc8/udump/sbidpc8_ora_650.trc:
    ORA-00600: internal error code, arguments: [kdddgb1], [0], [], [], [], [], [], []
    The portion of trace file is also pasted here.
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [kdddgb1], [0], [], [], [], [], [], []
    Current SQL statement for this session:
    UPDATE CORG SET UCD_CORG_BORRTYPECODE=:b1,UCD_CORG_RELATIONSHIPCODE=:b2,UCD_CORG_RELATIONTYPECODE=:b3,CORG_BUSINESSENTITYNAME=:b4,CORG_BORROWERTITLE=:b5,CORG_FIRSTNAME=:b6,CORG_MIDDLENAME1=:b7,CORG_MIDDLENAME2=:b8,CORG_MIDDLENAME3=:b9,CORG_LASTNAME=:b10,CORG_PAN=:b11,CORG_PERCENTAGECONTROL=:b12,CORG_ADDRESS1=:b13,CORG_ADDRESS2=:b14,CORG_ADDRESS3=:b15,CORG_TOWNCITYNAME=:b16,STDS_CORG_DISTCODE=:b17,STDS_CORG_STATECODE=:b18,CORG_PIN=:b19,SWFT_CORG_COUNTRYCODE=:b20,CORG_TELEPHONEAREACODE=:b21,CORG_TELEPHONE=:b22,CORG_EMAIL=:b23,CORG_WORTHAMT=:b24,CORG_RELINQUISHINGDATE=:b25 WHERE CUST_CORG_BRCD = :b26 AND CUST_CORG_CUSTID = :b27 AND PRDT_CORG_REPORTDATE = :b28 AND CORG_NAMEID = :b29
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    f01520d0 1489 package body CIS.PKGUPLOAD
    efa17d80 13 anonymous block
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    ksedmp()+168 CALL ksedst()+0 540 ? 0 ? FFBF6570 ?
    FFBF6014 ? FFBF5FF8 ? 0 ?
    kgerinv()+184 PTR_CALL 00000000 3 ? 0 ? 0 ? 175DCEC ? 1 ?
    FFBF6D7C ?
    kgesinv()+20 CALL kgerinv()+0 186509C ? 18B7D4C ? 14B03BC ?
    1 ? FFBF6D7C ? 1855270 ?
    ksesin()+60 CALL kgesinv()+0 186509C ? 18B7D4C ? 175DCEC ?
    1 ? FFBF6D7C ? F3329628 ?
    kdddgb()+1496 CALL ksesin()+0 175DCEC ? 1 ? 0 ? 0 ? 0 ?
    18AFDA1 ?
    kdusru()+604 CALL kdddgb()+0 18AFCF4 ? 0 ? 2 ? 18AFCF4 ?
    EF9EE640 ? 18AFD24 ?
    kauupd()+148 CALL kdusru()+0 18AF25C ? 0 ? 18AFCF4 ? 0 ?
    0 ? 18B0060 ?
    updrow()+3744 CALL kauupd()+0 18AF258 ? 0 ? 18AFCF4 ? 0 ?
    FFFF ? 1E ?
    qerupFetch()+272 CALL updrow()+0 0 ? EF9F5DD4 ? 18AFCF4 ?
    18AF258 ? 18AECC4 ? 18AFCF4 ?
    updaul()+392 PTR_CALL 00000000 EF9F4138 ? 1867C84 ?
    EF9F5DD4 ? 7FFF ? 186A604 ?
    EF9EE640 ?
    updexe()+232 CALL updaul()+0 EF9F7108 ? FFBF7B44 ?
    1867C00 ? 1868000 ? 18AEA98 ?
    18AEA94 ?
    opiexe()+9440 CALL updexe()+0 EF9F7108 ? 0 ? 18AEA94 ?
    18AECC4 ? 18AEA98 ? 18AECC4 ?
    opipls()+9740 CALL opiexe()+0 18AEA94 ? EF9F7108 ? 4 ?
    EF9F7108 ? 18BE3F0 ?
    1911F98 ?
    opiodr()+5688 PTR_CALL 00000000 1868000 ? 1A ? 18AEA90 ?
    192F9F0 ? 2758920 ? 460 ?
    rpidrus()+128 CALL opiodr()+0 1562F40 ? FFBF9664 ?
    1869000 ? 44 ? 1597C1A ?
    18BCBB8 ?
    skgmstack()+156 PTR_CALL 00000000 FFBF974C ? FFBF9888 ? 1 ? 0 ?
    0 ? 0 ?
    rpidru()+140 CALL skgmstack()+0 FFBF986C ? 1864EF0 ? F618 ?
    81121C ? FFBF9888 ?
    EFA184B0 ?
    rpiswu2()+608 PTR_CALL 00000000 FFBF9C7C ? 811384 ? 0 ?
    FFBFDBEC ? 2E ? FE743EF4 ?
    rpidrv()+2240 CALL rpiswu2()+0 FFBF9918 ? 1865000 ?
    FFBF9BEC ? 2 ? FFBF9BE4 ?
    2E ?
    psddr0()+136 CALL rpidrv()+0 1911F98 ? 32 ? 4000 ?
    1864C00 ? FFBF9C3C ?
    1865000 ?
    psdnal()+216 CALL psddr0()+0 FFBF9DC8 ? FFBF9D28 ?
    FFBF9DC8 ? 30 ? 1660478 ?
    1CC5D20 ?
    pfrrun()+58188 PTR_CALL 00000000 FFBFBBFC ? FFBFBCC0 ? 0 ?
    2E ? 2E ? 1 ?
    peicnt()+324 CALL pfrrun()+0 74 ? 192F578 ? F01466E4 ?
    11A ? FFBFBBFC ? 18BCBB8 ?
    kkxexe()+468 CALL peicnt()+0 FFBFBBFC ? 18BCBB8 ?
    18BCBB8 ? FFBFBBFC ?
    FFBFBB2C ? 0 ?
    opiexe()+11608 CALL kkxexe()+0 186A400 ? 18BCBB8 ?
    7FFFFC00 ? 14B5800 ?
    1864C00 ? EFA17D80 ?
    opiall0()+4944 CALL opiexe()+0 0 ? EFA18A54 ? 4 ? EFA18A54 ?
    1867C9C ? 18BCD1C ?
    opial7()+324 CALL opiall0()+0 18BA5A4 ? FFBFD4F8 ?
    1562920 ? 18BCD1C ? 3E ? 0 ?
    opiodr()+5688 PTR_CALL 00000000 1 ? F ? FFBFF048 ? 18BCD1C ?
    F1BCDAF4 ? F1B773D8 ?
    ttcpip()+956 PTR_CALL 00000000 1562D50 ? FFBFD7EC ?
    1869000 ? 1 ? 1597B9E ? 0 ?
    opitsk()+664 CALL ttcpip()+0 1867C98 ? 1867D74 ? 1597B9E ?
    FFBFE6AC ? FFBFE848 ? 0 ?
    opiino()+1792 CALL opitsk()+0 0 ? 18669F0 ? 186946C ? 0 ?
    1 ? 0 ?
    opiodr()+5688 PTR_CALL 00000000 FFBFFA28 ? 80005000 ?
    1867C00 ? 189AC58 ? 0 ?
    1855270 ?
    opidrv()+1316 CALL opiodr()+0 1562CA0 ? FFBFF62C ?
    1869000 ? 0 ? 1597B72 ?
    1872F7C ?
    sou2o()+20 CALL opidrv()+0 3C ? FFBFF73C ? 1864C00 ?
    FFBFF790 ? 0 ? 0 ?
    main()+160 CALL sou2o()+0 FFBFFA38 ? 3C ? 4 ?
    FFBFFA28 ? 165B614 ?
    1872F7C ?
    _start()+220         CALL     main()+0             0 ? FFBFFBE4 ? 188A05C ?
    1864C00 ? 0 ? 0 ?
    ----- Argument/Register Address Dump -----
    Argument/Register addr=ffbf6570.
    We request you to please look into this and help us out as early as possible.
    One query we are having is that whether database will crash, because of these errors?
    With regards
    Rajesh Jain

    Amit,
    The doc id mentioned by Satish already,*138325.1* is the correct note for the error code of yours.As its not right to post the content of metalink material, I shall just say that you have hit a bug which is removed in the release of 10g. So you should upgrade to 10g and/or , post the trace files which are created by this error to Oracle Support. I am not sure that would work either as support for 8i is not there any more.
    HTH
    Aman....

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

    Dear all,
    we are getting the following errors in our alert file.
    Errors in file /oracle8i/oracle/app/admin/sbidpc8/udump/sbidpc8_ora_650.trc:
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [17090], [], [], [], [], [], [], []
    Current SQL statement for this session:
    UPDATE CORG SET UCD_CORG_BORRTYPECODE=:b1,UCD_CORG_RELATIONSHIPCODE=:b2,UCD_CORG_RELATIONTYPECODE=:b3,CORG_BUSINESSENTITYNAME=:b4,CORG_BORROWERTITLE=:b5,CORG_FIRSTNAME=:b6,CORG_MIDDLENAME1=:b7,CORG_MIDDLENAME2=:b8,CORG_MIDDLENAME3=:b9,CORG_LASTNAME=:b10,CORG_PAN=:b11,CORG_PERCENTAGECONTROL=:b12,CORG_ADDRESS1=:b13,CORG_ADDRESS2=:b14,CORG_ADDRESS3=:b15,CORG_TOWNCITYNAME=:b16,STDS_CORG_DISTCODE=:b17,STDS_CORG_STATECODE=:b18,CORG_PIN=:b19,SWFT_CORG_COUNTRYCODE=:b20,CORG_TELEPHONEAREACODE=:b21,CORG_TELEPHONE=:b22,CORG_EMAIL=:b23,CORG_WORTHAMT=:b24,CORG_RELINQUISHINGDATE=:b25 WHERE CUST_CORG_BRCD = :b26 AND CUST_CORG_CUSTID = :b27 AND PRDT_CORG_REPORTDATE = :b28 AND CORG_NAMEID = :b29
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    f01520d0 1489 package body CIS.PKGUPLOAD
    efa17d80 13 anonymous block
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    ksedmp()+168 CALL ksedst()+0 540 ? 0 ? FFBF6FA8 ?
    FFBF6A4C ? FFBF6A30 ? 0 ?
    kgeriv()+196 PTR_CALL 00000000 3 ? 0 ? 0 ? 258 ? 1 ? 42C2 ?
    kgesiv()+96 CALL kgeriv()+0 186509C ? 18B7D4C ? 14B03BC ?
    0 ? FFBF77C8 ? 1855270 ?
    kgesic0()+32 CALL kgesiv()+0 186509C ? 18B7D4C ? 42C2 ?
    0 ? FFBF77C8 ? 1855270 ?
    updrow()+2280 CALL kgerse()+0 186509C ? 18B7D4C ? 42C2 ?
    833CE4 ? FFBF6D7C ? 0 ?
    qerupFetch()+272 CALL updrow()+0 18AFCF4 ? EF9F5DD4 ?
    18AFCF4 ? 18AF258 ? 18AECC4 ?
    18AFCF4 ?
    updaul()+392 PTR_CALL 00000000 EF9F4138 ? 1867C84 ?
    EF9F5DD4 ? 7FFF ? 186A604 ?
    EF9EE640 ?
    updexe()+232 CALL updaul()+0 EF9F7108 ? FFBF7B44 ?
    1867C00 ? 1868000 ? 18AEA98 ?
    18AEA94 ?
    opiexe()+9440 CALL updexe()+0 EF9F7108 ? 0 ? 18AEA94 ?
    18AECC4 ? 18AEA98 ? 18AECC4 ?
    opipls()+9740 CALL opiexe()+0 18AEA94 ? EF9F7108 ? 4 ?
    EF9F7108 ? 18BE3F0 ?
    1911F98 ?
    opiodr()+5688 PTR_CALL 00000000 1868000 ? 1A ? 18AEA90 ?
    192F9F0 ? 2758920 ? 460 ?
    rpidrus()+128 CALL opiodr()+0 1562F40 ? FFBF9664 ?
    1869000 ? 44 ? 1597C1A ?
    18BCBB8 ?
    skgmstack()+156 PTR_CALL 00000000 FFBF974C ? FFBF9888 ? 1 ? 0 ?
    0 ? 0 ?
    rpidru()+140 CALL skgmstack()+0 FFBF986C ? 1864EF0 ? F618 ?
    81121C ? FFBF9888 ?
    EFA184B0 ?
    rpiswu2()+608 PTR_CALL 00000000 FFBF9C7C ? 811384 ? 0 ?
    FFBFDBEC ? 2E ? FE743EF4 ?
    rpidrv()+2240 CALL rpiswu2()+0 FFBF9918 ? 1865000 ?
    FFBF9BEC ? 2 ? FFBF9BE4 ?
    2E ?
    psddr0()+136 CALL rpidrv()+0 1911F98 ? 32 ? 4000 ?
    1864C00 ? FFBF9C3C ?
    1865000 ?
    psdnal()+216 CALL psddr0()+0 FFBF9DC8 ? FFBF9D28 ?
    FFBF9DC8 ? 30 ? 1660478 ?
    1CC5D20 ?
    pfrrun()+58188 PTR_CALL 00000000 FFBFBBFC ? FFBFBCC0 ? 0 ?
    2E ? 2E ? 1 ?
    peicnt()+324 CALL pfrrun()+0 74 ? 192F578 ? F01466E4 ?
    11A ? FFBFBBFC ? 18BCBB8 ?
    kkxexe()+468 CALL peicnt()+0 FFBFBBFC ? 18BCBB8 ?
    18BCBB8 ? FFBFBBFC ?
    FFBFBB2C ? 0 ?
    opiexe()+11608 CALL kkxexe()+0 186A400 ? 18BCBB8 ?
    7FFFFC00 ? 14B5800 ?
    1864C00 ? EFA17D80 ?
    opiall0()+4944 CALL opiexe()+0 0 ? EFA18A54 ? 4 ? EFA18A54 ?
    1867C9C ? 18BCD1C ?
    opial7()+324 CALL opiall0()+0 18BA5A4 ? FFBFD4F8 ?
    1562920 ? 18BCD1C ? 3E ? 0 ?
    opiodr()+5688 PTR_CALL 00000000 1 ? F ? FFBFF048 ? 18BCD1C ?
    F1BCDAF4 ? F1B773D8 ?
    ttcpip()+956 PTR_CALL 00000000 1562D50 ? FFBFD7EC ?
    1869000 ? 1 ? 1597B9E ? 0 ?
    opitsk()+664 CALL ttcpip()+0 1867C98 ? 1867D74 ? 1597B9E ?
    FFBFE6AC ? FFBFE848 ? 0 ?
    opiino()+1792 CALL opitsk()+0 0 ? 18669F0 ? 186946C ? 0 ?
    1 ? 0 ?
    opiodr()+5688 PTR_CALL 00000000 FFBFFA28 ? 80005000 ?
    1867C00 ? 189AC58 ? 0 ?
    1855270 ?
    opidrv()+1316 CALL opiodr()+0 1562CA0 ? FFBFF62C ?
    1869000 ? 0 ? 1597B72 ?
    1872F7C ?
    sou2o()+20 CALL opidrv()+0 3C ? FFBFF73C ? 1864C00 ?
    FFBFF790 ? 0 ? 0 ?
    main()+160 CALL sou2o()+0 FFBFFA38 ? 3C ? 4 ?
    FFBFFA28 ? 165B614 ?
    1872F7C ?
    _start()+220         CALL     main()+0             0 ? FFBFFBE4 ? 188A05C ?
    1864C00 ? 0 ? 0 ?
    ----- Argument/Register Address Dump -----
    Argument/Register addr=ffbf6fa8.
    We request you to please look into this and help us out as early as possible.
    One query we are having is that whether database will crash, because of these errors?
    With regards
    Rajesh Jain

    ORA-600 = go to http://metalink.oracle.com
    Would it be possible to pick a thread to tell that at the top of this forum ?
    Fred

Maybe you are looking for