Getting ORA-29532 NullPointerException Error

Running Oracle 8.1.7.2.0 and installed the JVM by running initjvm.sql script. Got the following error in the trace file:
java.lang.NullPointerException
at oracle.jdbc.xa.XANative.start(XANative.java)
at oracle.jdbc.xa.server.OracleWrapXAResource.start(OracleWrapXAResource.java)
Have a Web Logic web server that shows the following in the error logs:
java.sql.SQLException: ORA-29532: Java call terminated by uncaught Java
exception: java.lang.NullPointerException ORA-06512: at "SYS.JAVA_XA", line 0
XA error: XAER_RMFAIL : Resource manager is unavailable start() failed on
resource '[system]Pool' Internal error: XAResource '[system]Pool' is unavailable> .
Puzzled as to why the Web Logic server loses connection to the database. What could possibly cause the Resource Manager to lose connections? The web server did not go down nor is it a network issue between the Web Server and the database server.

There is a bug in the Java class:
oracle.ewt.lwAWT.lwWindow.laf.TitleBar
In the method:
_createComponents
That class is obviously from an Oracle library. So, one of two things happened:
1) The Oracle code itself has a bug.
2) Code written by someone else using that Oracle class made improper use of the Oracle class.
I would guess #1... a NullPointerException should never arise in good code, even when it is used in an unexpected way.
If you have a contract with Oracle (or if you are Oracle) for this library, you should report this problem to your contact for this library.
Yes, it may be a language problem, but there is no way anyone in this discussion group can ever be sure of that without looking at the source for that Oracle class. Since it's probably a closed library, that's not bloody likely.
So, go call the people who sold you that library and raise some hell (or maybe just some heck). Good luck!

Similar Messages

  • Getting ORA-20001: Address_Cannot_be_Primary error while creating US Global

    Dear All,
    I am getting ORA-20001: Address_Cannot_be_Primary error while creating address record of address type US global.
    While analyzing the PYUPIP trace, I found the following piece of the code is causing issue:
    File : /* $Header: peusaddlh.pkb 120.0.12010000.2 2010/05/08 09:10:25 lbodired noship $ */
    Package : APPS.PER_US_ADD_LEG_HOOK.CREATE_US_ADDRESS
    Code check :
    IF (p_style <> 'US'
    AND P_PRIMARY_FLAG = 'Y'
    AND csr_emp_assign%FOUND) THEN
    close csr_emp_assign;
    hr_utility.set_message (800, 'Address_Cannot_be_Primary');
    hr_utility.raise_error;
    END IF;
    It seems that while applying this check the case of the US Global address style is not taken care.
    It has struck the address conversion, as all the records of my client has the address style US Global.
    Please suggest how it will effect if for the time being I do following code changes in the seeded package(I know it is not recommened, but can not wait for the patch).
    1. Comment the whole check
    2. Replace the above code with the follwoing code :
    IF (p_style not in ('US','US_GLB')
    AND P_PRIMARY_FLAG = 'Y'
    AND csr_emp_assign%FOUND) THEN
    close csr_emp_assign;
    hr_utility.set_message (800, 'Address_Cannot_be_Primary');
    hr_utility.raise_error;
    END IF;
    Looking for the prompt reply.
    regards
    Devender Yadav

    Dear All,
    Oracle has supplied the patch 9902020 for the fix of the issue.
    Now the payroll install check condition is also added in the check.
    Code in the check is now like this :
    IF (p_style <> 'US'
    AND P_PRIMARY_FLAG = 'Y'
    AND csr_emp_assign%FOUND
    AND hr_general.chk_product_installed('801') = 'TRUE') THEN
    close csr_emp_assign;
    hr_utility.set_message (800, 'Address_Cannot_be_Primary');
    hr_utility.raise_error;
    END IF;
    As my client has not installed the payroll, so the fix will work for us.
    Thanks to all of you for your replies.
    Regards
    Devender Yadav

  • Simple geometry gets ORA-29532 error on all SDO_GEOM calls

    Hi all,
    I have a single point in a table such that the query:
    select SDO_GEOM.VALIDATE_GEOMETRY(geomObj, 0.05) from testvalid;
    /* Returns */
    SDO_GEOM.VALIDATE_GEOMETRY(GEOMOBJ,0.05)
    'TRUE'However the query:
    select SDO_GEOM.VALIDATE_GEOMETRY_with_context(geomObj, 0.05) from testvalid;Receives the following error:
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.NumberFormatException: empty String
    ORA-06512: at "MDSYS.SDO_3GL", line 658
    ORA-06512: at "MDSYS.SDO_GEOM", line 519
    ORA-06512: at "MDSYS.SDO_GEOM", line 558
    ORA-06512: at line 1The data itself is a single sdo_point:
    select GEOMOBJ from testvalid;
    /* Returns: */
    GEOMOBJ
    '(3001, , (174.092329032787, 129.420551704918, -71.2857142857142), , )'I think that the problem is something to do with the precision of the stored X, Y and Z values in the point because if I run the following:
    update TESTVALID set GEOMOBJ.sdo_point.x = cast(GEOMOBJ.sdo_point.x as number(8,3));
    select SDO_GEOM.VALIDATE_GEOMETRY_with_context(geomObj, 0.05) from testvalid;
    /* Returns: */
    SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(GEOMOBJ,0.05)
    'TRUE'Similarly, running a direct comparison from an object made on the fly from the point's text representation works fine:
    select SDO_GEOM.VALIDATE_GEOMETRY_with_context("MDSYS"."SDO_GEOMETRY"(3001,NULL, "MDSYS"."SDO_POINT_TYPE"(174.092329032787,129.420551704918,-71.2857142857142),NULL,NULL), 0.005) from dual;
    /* Returns */
    SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT("MDSYS"."SDO_GEOMETRY"(3001,NULL,"MDSYS"."SDO_POINT_TYPE"(174.092329032787,129.420551704918,-71.2857142857142),NULL,NULL),0.005)
    'TRUE'Note that I only noticed this problem after upgrading from v11 to v11 R2. Also, the same ORA-29532 error comes up when running any of the SDO_GEOM.[x] function calls such as SDO_GEOM.DISTANCE(). The problem is not limited to SDO_POINT type geometries, yet the problem occurs only on some geometry entries in my database. It is repeatable in that the same geometry will continue to fail and the only solution I've found is to try to round down its precision in x, y, and/or z. I only know how to easily round down the precision for SDO_POINT types, so one of my problems is that I'm left with a whole scattering of other geometries that I can no longer spatially query.
    The datas themselves were inserted from MATLAB (which connects using v11 Oracle ODBC Java drivers) which converts my coordinates to java.math.BigDecimal and binds them to an oracle prepared statement.
    One possibility that I'm considering is that the insertion is done from various computers, some of which are 64-bit machines. Maybe somehow those machines are pumping in coordinates to a precision too great for oracle geometry?
    Any help would be fantastic as I'm pretty lost here.
    If the precision is indeed the problem, does anyone know how I can trim off those excess values after the decimal point for all geometry types?
    Thanks,
    Sven.

    The problem is with the way the ordiantes are created via java programs pre 11.2.
    There was a bit alignment problem in the internal representation of the number when these numbers are created from a java program.
    In 11.2 this corruption is fixed, but as a result the data that is already corrupted gives this "empty string" error.
    It is very easy to fix. Follow the steps in the script below.
    create or replace function id_geom ( g in sdo_geometry)
    return sdo_geometry deterministic as
    g1 sdo_geometry ;
    idx number;
    ords sdo_ordinate_array;
    x number;
    y number;
    z number;
    point_t sdo_point_type;
    begin
    if (g.sdo_point is not NULL) then
    x := NULL; y := NULL; z := NULL;
    if (g.sdo_point.x is not NULL) then
    x := g.sdo_point.x * 10;
    x := x / 10;
    end if;
    if (g.sdo_point.y is not NULL) then
    y := g.sdo_point.y * 10;
    y := y / 10;
    end if;
    if (g.sdo_point.z is not NULL) then
    z := g.sdo_point.z * 10;
    z := z / 10;
    end if;
    point_t := SDO_POINT_TYPE(x,y,z);
    else
    point_t := NULL;
    end if;
    if (g.sdo_ordinates is not NULL) then
    ords := sdo_ordinate_array();
    ords.extend(g.sdo_ordinates.count);
    for idx in 1 .. ords.count loop
    x := g.sdo_ordinates(idx);
    x := (x*10.0);
    x := x/10.0;
    ords(idx) := x;
    end loop;
    g1 := sdo_geometry(g.sdo_gtype, g.sdo_srid,point_t,g.sdo_elem_info,ords);
    else
    g1 := sdo_geometry(g.sdo_gtype, g.sdo_srid,point_t,g.sdo_elem_info, NULL);
    end if;
    return g1;
    end;
    And then update the rows with geometry data with SQL like this:
    update geom_table set geom = id_geom(geom);

  • When I try to insert simple xml file in to database get ORA-29532:

    procedure insProc(xmlDoc IN CLOB, tableName IN VARCHAR2) is
    insCtx DBMS_XMLSave.ctxType;
    rows number;
    begin
    insCtx := DBMS_XMLSave.newContext(tableName); -- get the context handle
    rows := DBMS_XMLSave.insertXML(insCtx,xmlDoc); -- this inserts the document
    DBMS_XMLSave.closeContext(insCtx); -- this closes the handle
    end;
    trying to insert one record into table A
    SQL> begin
    2 insProc(
    3 '<?xml version = 1.0?>
    4 <ROWSET>
    5 <ROW num="1">
    6 <A>1</A>
    7 </ROW>
    8 </ROWSET>','A');
    9 end;
    10 /
    begin
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception: oracle.xml.sql.OracleXMLSQLException: Ex
    ORA-06512: at "SYS.DBMS_XMLSAVE", line 115
    ORA-06512: at "VKAKURU.INSPROC", line 6
    ORA-06512: at line 2

    Tried reinstalling Adobe, didn't change anything.I've tried Control click when opening the PDF link, still a blank, grey page.

  • Get ORA-00368: checksum error in redo log block

    Hi all,
    I get an error ORA-00368: checksum error in redo log block when connecting to database and here is the error:
    ORA-00368: checksum error in redo log block
    ORA-00353: log corruption near block 430757 change 1236507302 time 11/12/2009
    09:55:35
    ORA-00312: online log 4 thread 1: '/oradata02/tchad/redo4.log'
    Note that we are in noarchive log mode.
    Could you help on how to recover my database please or a doc if there is interesting somewhere.
    Thank you
    Lucienot

    Hi I don't have redo log duplex and here are the things i've done:
    1.     shutdown abort
    2.     ALTER DATABASE CLEAR UNARCHIVED LOGFILE '/oradata/.../redo3.log';
    3.     startup nomount;
    4.     alter database mount;
    5.     ALTER DATABASE CLEAR UNARCHIVED LOGFILE GROUP 4;
    SQL> SELECT GROUP#, ARCHIVED, STATUS FROM V$LOG;
    GROUP# ARC STATUS
    3 NO ACTIVE
    4 NO CURRENT
    5 NO UNUSED
    SQL> alter system switch logfile;
    alter system switch logfile
    ERROR at line 1:
    ORA-01109: database not open
    SQL> alter database open;
    alter database open
    ERROR at line 1:
    ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/oradata00/tchad/system01.dbf'
    Thanks

  • Getting ORA-20002: 3825: Error '-4061-ORA-04061: Error from business event

    Hi,
    I have defined custom subscription to the iRecruitment business event oracle.apps.per.api.assignment.update_apl_asg . In this custom subscription i am launching a custom workflow to send Notification about offer acceptance or Application Submission information.
    The subscription package is in my custom schema. When i do transaction to invoke the subscription i am getting below error.
    ORA-20002: 3825: Error '-4061 - ORA-04061: existing state of has been invalidated ORA-04061: existing state of package
    "XXPJ.XXPJ_IREC_EXT_COMPONENTS_PK" has been invalidated ORA-04065: not executed, altered or dropped package "XXPJ.PT in Package irc_party_swi Procedure
    registered_user_application.
    I need to bounce the Workflow services and Apache server to clear this error and functionality work for some time, again after doing 3-4 transaction i get the same error.
    Any help on this appreciated.
    Regards,
    Ram

    From error: "existing state of has been invalidated ORA-04061" It only can happen when current db session finds this package as INVALID. Now when which cases it can find ir INVALID:
    1) One case is that: some other db session "really" compiled your current package. Please note: even if the status is VALID but other db session will see that as INVALID in first attempt and in second attempt, current db session will try to recompile that on-the-fly.
    2) Or Some other db session compiled or altered dependent objects, I mean objects on which your current package is dependent on.

  • 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

  • Upgrade 10G DB 10.2.0.1 into the 10.2.0.4 - get ORA-00600: internal error

    Hi All,
    Who can help me resolved the issue for ORA-00600: internal error code, arguments: [kksfbc-reparse-infinite-loop], [0x86698AC], [], [], [], [], [], []?
    The warning is from 10g 10.2.0.1 to upgrade into the 10.2.0.4. it is blocking my server to do testing. :(
    Edited by: Sammi_wu on Dec 23, 2008 4:04 AM

    This issue is noted in ML Doc 444985.1 (Summary of Bugs and Patches for ORA-600 [kksfbc-reparse-infinite-loop]) with a solution.
    HTH
    Srini

  • Getting "java.lang.NullPointerException" error message when trying to run an OATS OpenScript file from Eclipse to Create a record in Oracle EBS

    Hello,
    I'm trying to run a simple OpenScript script in Eclipse that creates a record (a Supplier in this case) in Oracle E-Business Suite. So I copied the the script file from OpenScript and created it as a Class in Eclipse.  Then I created a main class to call the methods within the script class but no matter what method I call (initialize, run or finalize) I'm getting the java.lang.NullPointerException message. The error doesn't seem to be related with any specific line in the script but with the way that I'm calling it.
    Should I call the OpenScript class from my main class in a different way? (see my examples below)
    BTW, all external .jar files coming with OATS have been added to my project in Eclipse.
    1) Here's the main class I created to call the OpenScript method (Eclipse auto-corrected my main class adding a Try and Catch around the method call):
    public class Test {
        public static void main(String[] args) {
            nvscript nvs = new nvscript();
            try {
                nvs.initialize();
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
    2) Here's the script from OpenScript (the actual script has more steps but I'm just using the first one for a proof of concept):
    import oracle.oats.scripting.modules.basic.api.*;
    import oracle.oats.scripting.modules.browser.api.*;
    import oracle.oats.scripting.modules.functionalTest.api.*;
    import oracle.oats.scripting.modules.utilities.api.*;
    import oracle.oats.scripting.modules.utilities.api.sql.*;
    import oracle.oats.scripting.modules.utilities.api.xml.*;
    import oracle.oats.scripting.modules.utilities.api.file.*;
    import oracle.oats.scripting.modules.webdom.api.*;
    import oracle.oats.scripting.modules.formsFT.api.*;
    import oracle.oats.scripting.modules.applet.api.*;
    public class nvscript extends IteratingVUserScript {
        @ScriptService oracle.oats.scripting.modules.utilities.api.UtilitiesService utilities;
        @ScriptService oracle.oats.scripting.modules.browser.api.BrowserService browser;
        @ScriptService oracle.oats.scripting.modules.functionalTest.api.FunctionalTestService ft;
        @ScriptService oracle.oats.scripting.modules.webdom.api.WebDomService web;
        @ScriptService oracle.oats.scripting.modules.applet.api.AppletService applet;
        @ScriptService oracle.oats.scripting.modules.formsFT.api.FormsService forms;
        public void initialize() throws Exception {
            this.getSettings().set("formsft.useformsonly",true);
            browser.launch();
        public void run() throws Exception {
            beginStep(
                    "[1] E-Business Suite Home Page Redirect (/ebs12cloud.winshuttle.com:8000/)",
                    0);
                web.window(2, "/web:window[@index='0' or @title='about:blank']")
                        .navigate("http://ebs12.xxxxxxx.com:8000/");
                web.window(4, "/web:window[@index='0' or @title='Login']")
                        .waitForPage(null);
                    think(4.969);
                web.textBox(
                        7,
                        "/web:window[@index='0' or @title='Login']/web:document[@index='0']/web:form[@id='DefaultFormName' or @name='DefaultFormName' or @index='0']/web:input_text[@id='usernameField' or @name='usernameField' or @index='0']")
                        .setText("winshuttle_user");
                    think(2.0);
                web.textBox(
                        8,
                        "/web:window[@index='0' or @title='Login']/web:document[@index='0']/web:form[@id='DefaultFormName' or @name='DefaultFormName' or @index='0']/web:input_password[@id='passwordField' or @name='passwordField' or @index='0']")
                        .click();
                    think(1.109);
                web.textBox(
                        9,
                        "/web:window[@index='0' or @title='Login']/web:document[@index='0']/web:form[@id='DefaultFormName' or @name='DefaultFormName' or @index='0']/web:input_password[@id='passwordField' or @name='passwordField' or @index='0']")
                        .setPassword(deobfuscate("kjhkjhkj=="));
                    think(1.516);
                web.button(
                        10,
                        "/web:window[@index='0' or @title='Login']/web:document[@index='0']/web:form[@id='DefaultFormName' or @name='DefaultFormName' or @index='0']/web:button[@id='SubmitButton' or @value='Login' or @index='0']")
                        .click();
            endStep();
        public void finish() throws Exception {       
    3) Here's the error messages I'm getting based on the method I call from my main class:
    3.a) when calling Initialize():
    java.lang.NullPointerException
        at oracle.oats.scripting.modules.basic.api.IteratingVUserScript.getSettings(IteratingVUserScript.java:723)
        at nvscript.initialize(nvscript.java:22)
        at Test.main(Test.java:9)
    3 b) when calling Run():
    java.lang.NullPointerException
        at oracle.oats.scripting.modules.basic.api.IteratingVUserScript.beginStep(IteratingVUserScript.java:260)
        at nvscript.run(nvscript.java:30)
        at Test.main(Test.java:9)
    Any help and/or constructive comment will be appreciated it.
    Thanks.
    Federico.

    UPDATE
    Compiling from command line I found out that the class definition for oracle.oats.scripting.modules.basic.api.IteratingVUserScript is missing. Do you know what .jar file contains this class?
    Thanks.
    Fede.

  • Loading data into XMLType column using dbms_xmlsave.insertxml get ORA-29532

    The following simple test case succeeded in 9.2.0.1 but failed in 9.2.0.2.
    CREATE OR REPLACE procedure InsertXML(xmlDoc IN VARCHAR2, tableName IN VARCHAR2) is
    insCtx DBMS_XMLSave.ctxType;
    rows number;
    begin
    insCtx := DBMS_XMLSave.newContext(tableName); -- get the context handle
    rows := DBMS_XMLSave.insertXML(insCtx,xmlDoc); -- this inserts the document
    dbms_output.put_line(to_char(rows) || ' rows inserted');
    DBMS_XMLSave.closeContext(insCtx); -- this closes the handle
    end;
    CREATE TABLE XMLtable
    (column1 xmltype)
    exec insertxml('<?xml version = "1.0"?><ROWSET><ROW><COLUMN1><TEST>HELLO</TEST></COLUMN1></ROW></ROWSET>', 'XMLTABLE');

    Hi,
    For your XML file I think you just need to enclose XML elemnts in ROWSET AND ROW TAGS - so xml should look like :
    <ROWSET>
    <ROW>
    <DEPT>
    </DEPT>
    and just pass it as CLOB to dbms_xmlsave.insertXML proc.
    I hope it should work.
    I am also trying to insert XML file but with a bit complex structure having multiple nested elements.
    I am not sure how to transform the external XML file to wrap it in ROWSET/ROW using XSLT. It's mandatory to use ROWSET/ROW tags to be able to insert in oracle tables. I am facing this problem right now. I am using object views to accomplish the purpose but still needs to figure out the way to apply stylesheet to incoming XML file.
    If you come to know of any way, pls do let me know also.
    Thanks

  • ORA-29532 when trying to write to a file using a Java stored procedure

    I have a Java stored procedure which gives me the following error when I run it:-
    SQL> exec zipfile('c:\temp\test.txt');
    BEGIN zipfile('c:\temp\test.txt'); END;
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.security.AccessControlException: the Permission (java.io.FilePermission
    c:\temp\test.txt.zip write) has not been granted to SCOTT. The PL/SQL to grant
    this is dbms_java.grant_permission( 'SCOTT', 'SYS:java.io.FilePermission',
    'c:\temp\test.txt.zip', 'write' )
    ORA-06512: at "SCOTT.ZIPFILE", line 1
    ORA-06512: at line 1
    I have tried running the dbms_java command as recommended as sys and have performed the necessary commit afterwards, also I have ran dbms_java.grant_permission( 'SCOTT', 'java.io.FilePermission',
    '*', 'write' )
    But I still get the ORA-29532.
    Does anyone have any ideas as to how I can get around this ?

    Are you getting ORA-29532 for the same file and the same permission ?
    Edited by: user769997 on Nov 23, 2009 12:57 AM

  • ORA 600 [kkqvmRmViewFromLst1] error

    Hi,
    I am using Binary XML DB .
    Here is the DB banner info.
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    "CORE 11.2.0.1.0 Production"
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    I am getting ORA 600 [kkqvmRmViewFromLst1] error while executing a query
    SELECT AGTAB1.AGREEMENT_ID AS agreement_ID
         FROM TNMAB_AGREEMENT_XML A ,
         XMLTable('/Agreement'
         PASSING A.AGREEMENT_XML COLUMNS AGREEMENT_ID VARCHAR2(20) path 'Identifier' ,
         SHP_PTY_CUST_HOLDER XMLType PATH 'ShippingPartyGroups/ShippingParties/CustomerHolder' ,
         NAMED_CUSTOMER_GROUPS XMLType PATH 'NamedCustomerGroups/NamedCustomer/SAP_IDs/StringWrappers' ) AGTAB1 ,
         XMLTable('/Agreement'
         PASSING A.AGREEMENT_XML COLUMNS NAMED_CUSTOMER_GROUPS XMLType PATH 'NamedCustomerGroups/NamedCustomer/SAP_IDs/StringWrappers' ) AGTAB2 ,
         XMLTable('/CustomerHolder' PASSING AGTAB1.SHP_PTY_CUST_HOLDER
         COLUMNS SAP_ID VARCHAR2(10) PATH 'SAP_ID') x2,
         XMLTable('/StringWrappers'
         PASSING AGTAB2.NAMED_CUSTOMER_GROUPS COLUMNS SAP_ID VARCHAR2(10) PATH 'SAP_ID') x3      
         WHERE (X2.SAP_ID IN ('3163494000') OR
         X3.SAP_ID IN ('3163494000')) group by AGTAB1.AGREEMENT_ID
    Please advise
    Thanks

    I am getting ORA 600 [kkqvmRmViewFromLst1] error while executing a queryAn ORA 600 error is a untrapped oracle software error an should be dealt with by creating an SR (service request) via support.oracle.com

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

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

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

  • ORA-00600: internal error code, arguments: [qkngbAllocate.6]

    Hi all ,
    I m getting ORA-00600: internal error code, arguments: [qkngbAllocate.6] while generating Statspack report in 11gr2(11.2.0.1.0) Standard Edition . I have searched on metalink but I did not find any solution for the same.
    Recently I have upgraded this database from 9.2.0.1.
    please Suggest on the the same.
    Thanks
    Ashutosh
    Edited by: Ashu631660 on Apr 28, 2011 10:15 PM

    Hi;
    ORA-00600: internal error code, arguments: [qkngbAllocate.6] while generatingYou are gettion oracle internal error(ORA 600) which mean you could need to work wiht oracle support team. Please see below note, if its not help than i suggest log a sr:
    Troubleshoot an ORA-600 or ORA-7445 Error Using the Error Lookup Tool [ID 153788.1]
    Regard
    Helios

  • ORA-00600: internal error code, arguments: [25012], [5], [524]

    Hello,
    We are getting ORA-00600: internal error code, arguments: [25012], [5], [524], [], [], [], [], [] in alertsid.log file.
    Content of /oracle/PRD/saptrace/usertrace/ora_1220283.trc
    =======================================================
    SESSION ID:(19.3) 2008-06-26 10:18:59.083
    2008-06-26 10:18:59.083
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [25012], [5], [524], [], [], [], [], []
    Current SQL statement for this session:
    UPDATE "JEST" SET "INACT" = :A0 , "CHGNR" = :A1 WHERE "MANDT" = :A2 AND "OBJNR" = :A3 AND "STAT" = :A4
    =======================================================
    Please suggest what can be cause and solution of this problem.
    - Nirav
    Edited by: Nirav Shah on Jul 18, 2008 12:59 PM

    Hello Nirav,
    which oracle version are you using?
    Metalinknote #429471.1 describes different cases.
    Regards
    Stefan

Maybe you are looking for

  • Error on page from BW 3.5's default web template

    Hi Guru's, We have a problem in our new BWD BW 3.5 environment where we are getting the "error on page" error from SAP-generated code and we aren’t sure why. On our old BWT BW 3.0b platform, we have been using a modified version of the 0query_templat

  • Urgent problem....

    This is an urgent problem.... I have a order quantity of 500... I am trying to deliver 506... in vl02n, when i entered 506, the system says picked quantity is more than delivery quantity... what does that mean...and instead of manually chaning...why

  • Printer tray selection in smartforms

    Hi All, I have a requirement that for a particluar printer the smartform should be printed using a particular tray (for ex. Tray4). How can this be achieved? Regards..

  • STOs and Productions order are not lined up. Dates are off

    Hi Experts I have a production order and STO with different dates. I would expect no gap between Prod order and the STO. I have checked Planned delivery time,GR/GI at both supplying and receiving plant . Everything looks fine. Please Advice

  • Work flow --DMS

    Dear all, I wanted to activate the work flow which could trigger Mail to Specific users at change of document status. ie when ever a Document is Placed for Inspection Request Status, Rejected Status, Changed status. What are the configuration setting