Unsupported construct or internal error (2601)

Hi all,
I use forms6i patch 17 with Oracle8i Enterprise Edition Release 8.1.7.4.1 .
My four datablocks are based on packaged stored procedures , and yesterday I modified the packaged stored procedure source block and some of the package procedures and functions. I modified my form according to the new package procedures and functions signatures. But when compiling I got errors saying :
Error 707 at line 1 , column 1
Unsupported construct or internal error (2601)
I tried to delete the query-procedures triggers and recompiling the form , but same results.
So what to do ?
Thank you very much indeed

I found the solution !
I realized that there were default values in the stored packaged procedures , and I added another defaulted argument to the the stored packaged procedure source block , but forms does not support this construct. Because I set value to this argument only for the second block , and for the others I do not set any value so I supposed that the default value was used. But forms does not support this , so I was forced to hardcode the value to set for the remaining argument.

Similar Messages

  • Error Message "PLS:707, unsupported construct or internal error "

    I am having a Stored Procedure which runs most of the times successfully when executed.But all of a sudden it throws a error message
    ERROR at line 1:
    ORA-06553: PLS-707: unsupported construct or internal error [2601]
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    So to correct this problem, i just compile the procedure again without doing any change.After doing this it works fine.When i logout from Oracle and relogin and try to execute the same SP , it again throws the error message.I am in need of a solution for this problem at the earliest.So request you to provide the feedback at the earliest.
    I am using
    Oracle8 Release 8.0.5.0.0
    PL/SQL Release 8.0.5.0.0
    I have attached the source code below.
    CREATE OR REPLACE PROCEDURE Gen_SinPrjEff(Sp_Proj_Id IN NUMBER,
    Sp_Emp_Id IN VARCHAR2,
    Sp_Start_Date IN VARCHAR2,
    SP_End_Date IN VARCHAR2)
    IS
    Date_Null NUMBER(1) := 0;
    CURSOR prjeff IS
    SELECT aa,
    bb,
    dd,
    sum(ee)
    FROM ( SELECT 'ProjectEffort' aa,
    RPAD(SUBSTR(b.employeename,1,20),20,' ') bb,
    '' dd,
    SUM(a.hourstoday) ee
    FROM timesheetentry a,
    employeemst b,
    project c,
    project d
    WHERE a.entryfromprojectid = Sp_Proj_Id
    AND a.projectid = Sp_Proj_Id
    AND c.projectid = a.entryfromprojectid
    AND d.projectid = a.projectid
    AND b.employeeno = a.employeeno
    AND ((Date_Null = 9) OR ((Date_Null = 1) AND
    (a.entrydate BETWEEN TO_DATE(Sp_Start_Date,'DD-Mon-YYYY') AND
    TO_DATE(Sp_End_Date,'DD-Mon-YYYY'))))
    GROUP BY RPAD(SUBSTR(b.employeename,1,20),20,' '),
    SUBSTR(d.projname,1,30)
    UNION
    SELECT 'ProjectEffort' aa,
    RPAD(SUBSTR(b.employeename,1,20),20,' ') bb,
    '' dd,
    SUM(a.hourstoday) "ee"
    FROM timesheetentry a,
    employeemst b,
    project c,
    project d
    WHERE a.entryfromprojectid <> Sp_Proj_Id
    AND a.projectid = Sp_Proj_Id
    AND c.projectid = a.entryfromprojectid
    AND d.projectid = a.projectid
    AND b.employeeno = a.employeeno
    AND ((Date_Null = 9) OR ((Date_Null = 1) AND
    (a.entrydate BETWEEN TO_DATE(Sp_Start_Date,'DD-Mon-YYYY') AND
    TO_DATE(Sp_End_Date,'DD-Mon-YYYY'))))
    GROUP BY RPAD(SUBSTR(b.employeename,1,20),20,' '),
    SUBSTR(d.projname,1,30)
    GROUP BY aa,bb,dd
    UNION
    SELECT 'ProjectOthers',
    RPAD(SUBSTR(b.employeename,1,20),20,' ') "Employee Name",
    RPAD(SUBSTR(d.projname,1,30),30,' ') dd,
    SUM(a.hourstoday) "Effort Spent"
    FROM timesheetentry a,
    employeemst b,
    project c,
    project d
    WHERE a.entryfromprojectid = Sp_Proj_Id
    AND a.projectid <> Sp_Proj_Id
    AND c.projectid = a.entryfromprojectid
    AND d.projectid = a.projectid
    AND d.swonflag = 0
    AND b.employeeno = a.employeeno
    AND ((Date_Null = 9) OR ((Date_Null = 1) AND
    (a.entrydate BETWEEN TO_DATE(Sp_Start_Date,'DD-Mon-YYYY') AND
    TO_DATE(Sp_End_Date,'DD-Mon-YYYY'))))
    GROUP BY RPAD(SUBSTR(b.employeename,1,20),20,' '),
    SUBSTR(d.projname,1,30)
    UNION
    SELECT 'SwonEffort',
    RPAD(SUBSTR(b.employeename,1,20),20,' ') "Employee Name",
    RPAD(SUBSTR(d.projname,1,30),30,' ') "Project To",
    SUM(a.hourstoday) "Effort Spent"
    FROM timesheetentry a,
    employeemst b,
    project c,
    project d
    WHERE a.entryfromprojectid = Sp_Proj_Id
    AND a.projectid <> Sp_Proj_Id
    AND c.projectid = a.entryfromprojectid
    AND d.projectid = a.projectid
    AND d.swonflag = 1
    AND b.employeeno = a.employeeno
    AND ((Date_Null = 9) OR ((Date_Null = 1) AND
    (a.entrydate BETWEEN TO_DATE(Sp_Start_Date,'DD-Mon-YYYY') AND
    TO_DATE(Sp_End_Date,'DD-Mon-YYYY'))))
    GROUP BY RPAD(SUBSTR(b.employeename,1,20),20,' '),
    SUBSTR(d.projname,1,30);
    Eff_Type admin32.prjeffdata.prjefftype%type;
    Proj_Name admin32.prjeffdata.projname%type;
    Emp_Name admin32.prjeffdata.empname%type;
    Proj_Eff admin32.prjeffdata.projeff%type;
    Tmp_Dind admin32.prjeffdata.del_ind%type;
    BEGIN
    -- dbms_output.put_line('Begin');
    Tmp_Dind := NULL;
    TmP_Dind := LPAD(LTRIM(RTRIM(Sp_Emp_Id)),6,'0') || LPAD(LTRIM(RTRIM(TO_CHAR(Sp_Proj_Id))),5,'0');
    IF (Sp_Start_Date IS NULL) THEN
    Date_Null := 9;
    ELSE
    Date_Null := 1;
    END IF;
    dbms_output.put_line(to_char(date_null));
    DELETE prjeffdata
    WHERE del_ind = LPAD(LTRIM(RTRIM(Sp_Emp_Id)),6,'0') || LPAD(LTRIM(RTRIM(TO_CHAR(Sp_Proj_Id))),5,'0');
    COMMIT;
    OPEN prjeff;
    LOOP
    Eff_Type := NULL;
    Proj_Name := NULL;
    Emp_Name := NULL;
    Proj_Eff := NULL;
    FETCH prjeff
    INTO Eff_Type,
    Emp_Name,
    proj_Name,
    proj_Eff;
    EXIT WHEN prjeff%NOTFOUND;
    INSERT INTO prjeffdata(prjefftype,
    empname,
    projname,
    projeff,
    del_ind)
    VALUES (eff_type,
    emp_name,
    proj_name,
    proj_eff,
    Tmp_Dind);
    --dbms_output.put_line(eff_type || ',' || emp_name || ',' || proj_name );
    END LOOP;
    CLOSE prjeff;
    COMMIT;
    --dbms_output.put_line('End');
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    dbms_output.put_line('Error');
    WHEN OTHERS THEN
    dbms_output.put_line('Error');
    END

    This is what works on 8.1.7. I don't know the svrmgrl name in 8.0.5, but it should be in your %ORACLE_HOME%/bin
    > cd %oracle_home%\rdbms\admin
    >svrmgr sys/<password>@dbname
    SVRMGR> @standard
    Statement processed.
    Statement processed.
    Statement processed.
    SVRMGR> @UTLRP
    if this doesn't work then do this
    SVRMGR> @catalog
    good luck

  • "unsupported construct or internal error"

    I'm trying to call a procedure (via a concurrent request) using the FND_REQUEST.SUBMIT_REQUEST procedure in a WHEN-BUTTON-PRESSED trigger in my form and I keep getting an error when I try to compile the trigger code:
    Error 707 at line 1, column 1
    unsupported construct or internal error [2601]
    Below is the part of the code that is causing the problem (the call to the FND_REQUEST package). It will compile if I replace the "chr(0)" at the end of the parameter list with 80 or so "" (null) parameters to match the number of arguments specified in the SUBMIT_REQUEST procedure. But, this should not be necessary and causes problems then, b/c the procedure that is being called errors out with an error of "wrong number or types of arguments in call". This compiles fine with the chr(0) if i compile this type of construct in a database procedure. But, forms (6i) won't let me.
    This is very frustrating. Is there any way around this?
         v_req_id := FND_REQUEST.SUBMIT_REQUEST('XXROT','BHR_INV','',
                                                      '',FALSE,     v_no_param,v_trx_date_param,v_org_param,v_print_type,v_cust_param,v_trx_source_param,v_sort,v_email_cust,chr(0));

    I don't know the fnd_request.submit_request procedure, but i think the problem is related to a bug in forms 6i. If you call a stored procedure which has an optional date parameter, without supplying this parameter, then you will get this error.
    Include the default value explicitly in your call, and your problem should go away.

  • Use SDO_NN in procedure: ERROR: PLS-00707: unsupported construct or internal error [2603]

    Hi,
    I have a problem with use SDO_NN function in a procedure. In case that I use SDO_NN in a SELECT command, it works. In case that I create an anonymous PL/SQL block, it works. But when I create a procedure, it doesn't work and there is an error: ERROR: PLS-00707: unsupported construct or internal error [2603].
    Here is the PL/SQL block, that works:
    BEGIN
    INSERT INTO K3_BlizkeDFB(SO1, SO2, VZDALENOST)
    SELECT  distinct
       ISO.kod AS SO1, SO.kod AS SO2, MDSYS.SDO_NN_DISTANCE(1) AS VZDAL
       FROM StavebniObjektDFB SO, StavebniObjektDFB_INDEX ISO 
       WHERE SDO_NN(ISO.geom,  SO.geom,
          'sdo_num_res=4', 1) = 'TRUE'
          AND ISO.kod<>SO.kod
          AND MDSYS.SDO_NN_DISTANCE(1)<=2;
    END;
    Here is an attempt to create a procedure that doesn't work:
    CREATE OR REPLACE PROCEDURE K1_BlizkeDFB AS
    BEGIN
    INSERT INTO K3_BlizkeDFB(SO1, SO2, VZDALENOST)
    SELECT  distinct
       ISO.kod AS SO1, SO.kod AS SO2, MDSYS.SDO_NN_DISTANCE(1) AS VZDAL
       FROM StavebniObjektDFB SO, StavebniObjektDFB_INDEX ISO 
       WHERE SDO_NN(ISO.geom,  SO.geom,
          'sdo_num_res=4', 1) = 'TRUE'
          AND ISO.kod<>SO.kod
          AND MDSYS.SDO_NN_DISTANCE(1)<=2;
    END;
    Can someone explain, what's wrong?
    Thanks
    Jindra

    Hi Jindra,
    Googling your error message says that this is sqldeveloper issue.  You can verify this by compiling your procedure with sqlplus.  Sounds like you need to update your software.
    Cheers,
    Paul

  • [SOLVED] Error: PLS-00707: unsupported construct or internal error [2603]

    Hi all,
    I have a SP, when I try to compile with sqldeveloper I have this error
    Error: PLS-00707: unsupported construct or internal error [2603]
    If I change "CREATE OR REPLACE PROCEDURE getsimilar AS" with DECLARE (anonymous block) the code work perfectly...
    What am I doing wrong?
    this is SP
    CREATE OR REPLACE PROCEDURE getsimilar AS
    id NUMBER;
    score NUMBER;
    image ORDSYS.ORDImage;
    query_signature ORDSYS.ORDImageSignature;
    queryimg ORDSYS.ORDIMAGE;
    CURSOR getphotos IS
    SELECT id, ORDSYS.IMGScore(123) SCORE FROM imgstable WHERE
    ORDSYS.IMGSimilar(sign, query_signature,
    'color="1.00" shape="1.00" texture="1.00" location="1.00"',20,123) = 1 order by SCORE desc;
    BEGIN
    queryimg := ORDSYS.ORDIMAGE.init('FILE','BDMVFSUPLOADSEARCHTMP','test.jpeg');
    query_signature := ORDSYS.ORDIMAGESIGNATURE.init();
    DBMS_LOB.CREATETEMPORARY(query_signature.signature, TRUE);
    query_signature.generateSignature(queryimg);
    OPEN getphotos;
    LOOP
    FETCH getphotos INTO id, score;
    EXIT WHEN getphotos%NOTFOUND;
    DBMS_OUTPUT.PUT_LINE('Image with ID ' || id || ' matches query image. score:' || score);
    END LOOP;
    CLOSE getphotos;
    DBMS_LOB.FREETEMPORARY(query_signature.signature);
    END;
    Edited by: Reny on 4-apr-2011 6.22

    Hi
    Try creating the procedure without the positional notation in your function call in the cursor (BTW, the positional params should be specified as <param> => <value>, not <param> = <value>). i.e just pass the values to your functional call as shown below and see if it works. Is this what you intend to do?
    I also suggest that you try and compile the procedure in SQLPLUS.
    CREATE OR REPLACE PROCEDURE getsimilar AS
    id NUMBER;
    score NUMBER;
    image ORDSYS.ORDImage;
    query_signature ORDSYS.ORDImageSignature;
    queryimg ORDSYS.ORDIMAGE;
    CURSOR getphotos IS
    SELECT id, ORDSYS.IMGScore(123) SCORE FROM imgstable WHERE
    ORDSYS.IMGSimilar(sign, query_signature,
    '1.00', '1.00', '1.00','1.00',20,123) = 1 order by SCORE desc;
    BEGIN
    queryimg := ORDSYS.ORDIMAGE.init('FILE','BDMVFSUPLOADSEARCHTMP','test.jpeg');
    query_signature := ORDSYS.ORDIMAGESIGNATURE.init();
    DBMS_LOB.CREATETEMPORARY(query_signature.signature, TRUE);
    query_signature.generateSignature(queryimg);
    OPEN getphotos;
    LOOP
    FETCH getphotos INTO id, score;
    EXIT WHEN getphotos%NOTFOUND;
    DBMS_OUTPUT.PUT_LINE('Image with ID ' || id || ' matches query image. score:' || score);
    END LOOP;
    CLOSE getphotos;
    DBMS_LOB.FREETEMPORARY(query_signature.signature);
    END;Edited by: GG on Apr 4, 2011 11:25 AM
    Edited by: GG on Apr 4, 2011 11:34 AM

  • PLS-00707: unsupported construct or internal error [2603] XML%Type

    I'm currently using SQL Developer 3.0.4 (Details at bottom of thread) and get the following error when compiling a package:
    PLS-00707: unsupported construct or internal error [2603]
    The problem lies with an IN parameter which has a datatype of mytable.myxmlcolumn%type where the underlying myxmlcolumn has a datatype of SYS.XMLTYPE.
    This compile fine in SQL Plus and also in PL/SQL Developer but not in SQL Developer.
    Any ideas or assistance would be appreciated.
    About
    Oracle SQL Developer 3.0.04
    Version 3.0.04
    Build MAIN-04.34
    Copyright © 2005, 2011 Oracle. All Rights Reserved.
    IDE Version: 11.1.1.4.37.59.31
    Product ID: oracle.sqldeveloper
    Product Version: 11.1.2.04.34
    Version
    Component     Version
    =========     =======
    Java(TM) Platform     1.6.0_25
    Oracle IDE     3.0.04.34
    Versioning Support     3.0.04.34

    Just an FYI: the status of the bug I logged for you is "Closed, Could Not Reproduce".
    As you can see, to pursue these potential bugs we really must have well-defined test cases. Searching, I can find other complaints of similar cases (compiles in SQL*Plus but not SQL Developer) on the web (but without any code details), so a bug probably does exist. Perhaps someone will eventually provide a reproducible test case.
    Thanks,
    Gary

  • 0 PLS-00707: unsupported construct or internal error [2603]

    I have several packages and their bodies which can be correctly imported into XE. However, when I recompile the body of some of the packages I get the PLS-00707... error. If I drop the body and then issue a "create or replace package body ..." with the same exact code, I do not get the error, but then again, on recompile I get the error.
    If before recompile, I execute the code, it runs correctly (apparently).
    Any idea?
    Thanks.

    Hakan,
    Likely you are hitting a bug in 10gR2, as you are not on the last patch release,10.2.0.4
    I recommend you visit Metalink and search for PLS-0707 to check whether my assumption is true and whether there is a fix available in 10gR2. You may of course request a backport, if it has been fixed in 11gR1 only.
    Sybrand Bakker
    Senior Oracle DBA

  • OWB 11gR2 - Internal ERROR: Can not find the ACL containter

    OWB 11gR2 - Internal ERROR: Can not find the ACL containter
    =======================================
    I am using OWB 11gR2 (11.2.0.1) on Win XP 32 bit. I have 3.23 GB RAM. OWB design center is ver slow on my desktop. We have our OWB repository is on Unix server.
    We applied the patch 10270220.
    We are getting
    Internal ERROR: Can not find the ACL containter for object:CMPPhysicalMap@19654/id=104020/owningFCO=104020/proxyFor=(CMPPhysicalMapGen@19f99ae/id=104020/stname=null/pname=MAPPING_1/lname=MAPPING_1/status=POSTED/committed=true/persistent=true/propsLoaded=true)
    What is happening here?
    Thanks in helping.

    We have a map with 3 sources and 1 target. The 3 sources pass through Joiner then Expression then Target.
    We are getting this error, during deployment. It shows compling for awhile, then through this error.
    Here is the piece from detail window:
    ===========
    at oracle.wh.repos.pdl.security.SecurityPolicyManager.getAccessCharMapOfPrivilegeOwner(SecurityPolicyManager.java:174)
         at oracle.wh.repos.impl.foundation.CMPElement.getAccessCharMapOfPrivilegeOwner(CMPElement.java:2806)
         at oracle.wh.repos.pdl.security.OWBSecurityImpl.hasPrivilege(OWBSecurityImpl.java:914)
         at oracle.wh.repos.pdl.security.OWBSecurityImpl.internalSecurityCheck(OWBSecurityImpl.java:1542)
         at oracle.wh.repos.pdl.security.OWBSecurityImpl.securityCheck(OWBSecurityImpl.java:694)
         at oracle.wh.repos.pdl.security.SecurityModuleImpl.securityCheck(SecurityModuleImpl.java:959)
         at oracle.wh.repos.pdl.security.SecurityModuleImpl.securityCheck(SecurityModuleImpl.java:924)
         at oracle.wh.repos.pdl.dispatcher.EventDispatcherImpl.beforeReadObject(EventDispatcherImpl.java:824)
         at oracle.wh.repos.pdl.foundation.OWBRoot.beforeRead(OWBRoot.java:1785)
         at oracle.wh.repos.owbGen.CMPStringPropertyValueGen.getValue(CMPStringPropertyValueGen.java:217)
         at oracle.wh.repos.impl.properties.CMPStringPropertyValue.getValue(CMPStringPropertyValue.java:117)
         at oracle.wh.repos.impl.extended.PropertyFactory.getStringValue(PropertyFactory.java:440)
         at oracle.wh.repos.impl.extended.CMPWBPrimitiveProperty.rawStringValue(CMPWBPrimitiveProperty.java:260)
         at oracle.wh.repos.sdk.mapping.WBMapHelper.getStringProperty(WBMapHelper.java:716)
         at oracle.wh.repos.sdk.mapping.WBMapHelper.getStringProperty(WBMapHelper.java:733)
         at oracle.wh.repos.sdk.mapping.WBMapHelper.getReferencedLocations(WBMapHelper.java:1361)
         at oracle.wh.service.impl.runtime.EnvironmentUtils.getReferencedLocations(EnvironmentUtils.java:284)
         at oracle.wh.service.impl.runtime.EnvironmentUtils.getReferencedLocations(EnvironmentUtils.java:141)
         at oracle.wh.service.impl.runtime.EnvironmentUtils.getReferencedLocations(EnvironmentUtils.java:135)
         at oracle.wh.service.impl.runtime.RuntimePlatformServiceImpl.getReferencedLocations(RuntimePlatformServiceImpl.java:1238)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandUtil.addConnectorLocations(WHRuntimeCommandUtil.java:477)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandGenerateDeploy.getSingleDeployLocations(WHRuntimeCommandGenerateDeploy.java:3408)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandGenerateDeploy.getLocationsAndNewConnectors(WHRuntimeCommandGenerateDeploy.java:3517)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandGenerateDeploy.doPreDeploymentActions(WHRuntimeCommandGenerateDeploy.java:3224)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandGenerateDeploy._internalDeploy(WHRuntimeCommandGenerateDeploy.java:2420)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandGenerateDeploy.doDeploymentAsynch(WHRuntimeCommandGenerateDeploy.java:2117)
         at oracle.wh.ui.runtime.application.WHRuntimeCommandHandler$1.construct(WHRuntimeCommandHandler.java:1005)
         at oracle.wh.ui.runtime.SwingWorker$2.run(SwingWorker.java:124)
         at java.lang.Thread.run(Thread.java:595)
    ===========
    Did anyone receive such errors?

  • Flash Builder 4.5 Data Services Wizard, setting up REST service call returns Internal Error Occurred

    Dear all -
    I am writing with the confidence that someone will be able to assist me.
    I am using the Flash Builder Data Services Wizard to access a Server that utilizes REST type calls and returns JSON objects. The server is a JETTY server and it apparantly already works and is returning JSON objects (see below for example). It is both HTTP and HTTPS enabled, and right now it has a cross-domain policy file that is wide open (insecure but its not a production server, it's internal).
    The crossdomain file looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
       <allow-http-request-headers-from domain="*" headers="*" secure="false"   />
       <allow-access-from domain="*" to-ports="*" secure="false"/>
       <site-control permitted-cross-domain-policies="master-only" />
    </cross-domain-policy>
    The crossdomain file is in the jetty server's root directory and is browseable via HTTP and HTTPS (i.e. browsing to it returns the xml)
    Now before all of you say that using wizards sucks (generally) I thought I would utilize the FB Data Services Wizard as at least it would provide a template for which I could build additional code against, or replace and improve the code it produces.
    With that in mind, I browse to the URL of the Jetty Server with any web browser (for example, Google Chrome, Firefox or IE) with a URL like this (the URL is a little confidential at the moment, but the structure is the same)
    https://localhost:somePort/someKey/someUser/somePassword/someTask
    *somePort is the SSL port like 8443
    *someKey is a key to access the URL's set of services
    returns a JSON object as a string in the web browser and it appears like the following:
    {"result":success,"value":"whatEverTheValueShould"}
    Looks like the JSON string/object is valid.
    I went through the Flash Builder Data Services Wizard to set up HTTP access to this server. The information that I filled in is described below:
    Do you want to use a Base URL as a prefix for all operation URLs?
    YES
    Base URL:
    https://localhost:8443/someKey/
    Name                    : someTask
    Method                    : POST
    Content-Type: application/x-www-form-urlencoded
    URL                              : {someUser}/{somePassword}/someTask
    Service Name: SampleRestapi
    Services Package: services.SampleRestapi
    datatype objects: valueObjects:
    Completing the wizard, I run the Test Operation command. Remember, no authentication is needed to get a JSON string.
    It returns:
    InvocationTargetException: Unable to connect to the URL specified
    I am thinking - okay, but the URL IS browseable (as I originally was able to browse to it, as noted above).
    I continue to test the service by creating a Flex application that accepts a username and password in a form. when the form is submitted, the call to the service is invoked and an event handler returns the result. The code is below (with some minor changes to mask the actual source).
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:s="library://ns.adobe.com/flex/spark"
                                     xmlns:mx="library://ns.adobe.com/flex/mx"
                                     xmlns:SampleRestapi="services.SampleRestapi.*"
                                     minWidth="955" minHeight="600">
              <fx:Script>
                        <![CDATA[
                                  import mx.controls.Alert;
                                  import mx.rpc.events.ResultEvent;
                                  protected function button_clickHandler(event:MouseEvent):void
                                            isUserValidResult.token = SampleRestAPI.isUserValid(userNameTextInput.text,passwordTextInput.text);
                                  protected function SampleRestAPI_resultHandler(event:ResultEvent):void
                                            // TODO Auto-generated method stub
                                            // print out the results
                                            txtAreaResults.text = event.result.message as String;
                                            // txtAreaResults.appendText( "headers \n" + event.headers.toString() );
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <SampleRestapi:SampleRestAPI id="SampleRestAPI"
                                                                                                 fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)"
                                                                                                 result="SampleRestAPI_resultHandler(event)"
                                                                                                 showBusyCursor="true"/>
                        <s:CallResponder id="isUserValidResult"/>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Form defaultButton="{button}">
                        <s:FormItem label="UserName">
                                  <s:TextInput id="userNameTextInput" text="q"/>
                        </s:FormItem>
                        <s:FormItem label="Password">
                                  <s:TextInput id="passwordTextInput" text="q"/>
                        </s:FormItem>
                        <s:Button id="button" label="IsUserValid" click="button_clickHandler(event)"/>
                        <s:FormItem  label="results:">
                                  <s:TextArea id="txtAreaResults"/>
                        </s:FormItem>
              </s:Form>
    </s:Application>
    It's a simple application to be sure. When I run it , I get the following returned in the text area field txtAreaResults:
    An Internal Error Occured.
    Which is equivalent to the following JSON string being returned:
    {"success":false,"value":"An Internal Error Occured"}
    It appears that the call is being made, and that a JSON object is being returned... however it does not return the expected results?
    Again the URL constructed is the same:
    https://www.somedomain.com:somePort/someKey/someUser/somePassword/someTask
    So I am wondering what the issue could be:
    1) is it the fact that I am browsing the test application from an insecure (http://) web page containing the Flex application and it is accessing a service through https:// ?
    2) is the JSON string structurally correct? (it appears so).
    3) There is a certificate enabled for HTTPs. it does not match the test site I am using ( the cert is for www.somedomain.com but I am using localhost for testing). Would that be an issue? Google Chrome and IE just asks me to proceed anyway, which I say "yes".
    Any help or assistance on this would be appreciated.
    thanks
    Edward

    Hello everyone -
    Since I last posted an interesting update happened. I tested my  Flex application again, it is calling a Jetty Server that returns a JSON object, in different BROWSERS.  I disabled HTTPS for now, and the crossdomain.xml policy file is wide open for testing (ie. allowing every request to return data). So the app accessing the data using HTTP only. Browsers  -  IE, Opera, Firefox and Chrome. Each browser contained the SAME application, revision of the Flash Player (10.3.183.10 debugger for firefox, chrome, opera, safari PC; 11.0.1.129 consumer version in IE9,) take a look at the screen shot (safari not shown although the result was the same as IE and chrome)
    Note that Opera and Firefox returned successful values (i.e. successful JSON objects) using the same code generated from the Data Services Wizard. Chrome, IE and, Safari failed with an Internal error. So I am left wondering - WHY? Is it something with the Flash Player? the Browsers?  the Flex SDK? Any thoughts are appreciated. Again, the code is found in the original thread above.

  • Sybase Error 2601 Attempt to insert duplicate key row in object with unique

    RE: Sybase Error 2601 Attempt to insert duplicate key row in object with unique index.
    Hi Folks,
    I'm getting the following error whilst executing a stored procedure in Sybase.
    ERROR: Sybase Error 2601 Attempt to insert duplicate key row in object with unique index.
    I understand that duplicate values have been inserted into a column that has a unique constraint.
    I just can't figure out how to rectify the problem.
    Your help will be greatly appreciated!
    Many thanks in advance.

    If the value I'm trying to insert (using update)
    already exists in the unique-value field then the DB
    refuses to update the field.
    If the value is different it will update.Are you trying to insert or update in SQL (identified by the keyword INSERT or UPDATE respectively)?
    Even in case of an UPDATE query, if you are going to update the values of some columns to violate the unique constraints, the update will not succeed and you will get the error message.
    or is it?
    it tries to create a new row, but can't because there
    is another row with the same unique-values.
    If this is the case, I am only trying to update and
    not create a new item.To put it in simpler words, if you have a set of values defining the uniqueness of a record, you cannot insert another record with the same set of unique values. Similarly, you cannot update an existing record by modifying the set to conflict with another set of unique values which already exist in the database.
    Suppose there are two columns A and B defining the uniqueness of the record and you have only two records at the moment like -
    A B
    ========
    1 1
    2 1
    If you try to insert a record with A = 1 and B = 1, it will fail because a record already exists. You cannot violate uniqueness because the database has already been told that there will be only one record for any given combination of A and B.
    Similarly, if you try to update the second record from A = 2 to A = 1, the end result would be A =1 and B = 1. There is already a record with that set of values and this will result in a violation of the uniqueness. So, this update will also be disallowed. On the other hand, if you try to update B to some value, say 3, there is no problem in doing so.
    For convenience, you can imagine an UPDATE operation to be equivalent to DELETE + INSERT operation, though it doesn't necessarily work the same way internally.
    I hope I was clear enough.

  • 12c Agent ./emctl pingOMS   EMD pingOMS error: an internal error has occure

    Running 12c Enterprise Manager
    Installed the agent using silent install.
    started the agent successfully.
    ./emctl pingOMS
    EMD pingOMS error: an internal error has occured at the agent: "unable to send response".
    Checked gcagent.log
    2012-07-10 20:46:29,980 [1:3305B9:main] DEBUG - ADR_BASE='/emcca/agent12c/agent_inst'
    2012-07-10 20:46:30,901 [10:8DFFF7E4:InitDFWHelper_0] DEBUG - ADR_HOME='/emcca/agent12c/agent_inst/diag/ofm/emagent/emagent'
    2012-07-10 20:46:30,903 [10:8DFFF7E4] DEBUG - DFW flood control incident count set to: 5 in timeframe of 1 minutes
    2012-07-10 20:46:30,904 [10:8DFFF7E4] DEBUG - Creating Tier1 FC (size=100, timeframe=3600, maxIncidents=5)
    2012-07-10 20:46:30,904 [10:8DFFF7E4] DEBUG - Creating Tier2 FC (size=100, timeframe=86400, maxIncidents=25)
    2012-07-10 20:46:30,904 [10:8DFFF7E4] DEBUG - The DFW initialization was completed.
    2012-07-10 20:46:30,907 [1:3305B9] INFO - Agent is starting up
    2012-07-10 20:46:31,130 [1:3305B9] DEBUG - notifierMain: Initialization State=STARTUP_P1
    2012-07-10 20:46:31,131 [1:3305B9] DEBUG - Invoking STARTUP_P1 (0) on SystemStateDump
    2012-07-10 20:46:31,132 [1:3305B9] DEBUG - Done: STARTUP_P1 (0) on SystemStateDump
    2012-07-10 20:46:31,133 [1:3305B9] DEBUG - Invoking STARTUP_P1 (0) on Agent Events
    2012-07-10 20:46:31,133 [1:3305B9] DEBUG - Done: STARTUP_P1 (0) on Agent Events
    2012-07-10 20:46:31,133 [1:3305B9] DEBUG - Invoking STARTUP_P1 on Configuration Manager
    2012-07-10 20:46:31,137 [1:3305B9] DEBUG - Done: STARTUP_P1 on Configuration Manager
    2012-07-10 20:46:31,137 [1:3305B9] DEBUG - Invoking STARTUP_P1 on System Properties
    2012-07-10 20:46:31,140 [1:3305B9] DEBUG - Done: STARTUP_P1 on System Properties
    2012-07-10 20:46:31,140 [1:3305B9] DEBUG - Invoking STARTUP_P1 (1) on SystemStateDump
    2012-07-10 20:46:31,141 [1:3305B9] DEBUG - Done: STARTUP_P1 (1) on SystemStateDump
    2012-07-10 20:46:31,141 [1:3305B9] DEBUG - Invoking STARTUP_P1 (1) on Logging Manager
    2012-07-10 20:46:31,277 [1:main] ERROR - Unable to construct an HTTPS context for url https://gc.respecti.com:14511/empbs/upload/:
    java.io.IOException [Failed to open agent server wallet]
    java.io.FileNotFoundException [emcca/agent12c/agent_inst/sysman/config/server/repoconn.ora (No such file or directory)]
    2012-07-10 20:46:31,281 [1:3305B9] WARN - Component notification failure (continue): HTTP Client Configuration failed at Startup
    oracle.sysman.gcagent.util.exception.SubSystemDisabledException: Unable to construct an HTTPS context for url https://gc.respecti.com:14511/empbs/upload/:
    at oracle.sysman.gcagent.comm.agent.http.ClientConfigComponent.cacheRepositoryUrl(ClientConfigComponent.java:482)
    at oracle.sysman.gcagent.comm.agent.http.ClientConfigComponent.tmNotifier(ClientConfigComponent.java:195)
    at oracle.sysman.gcagent.tmmain.lifecycle.TMComponentSvc.invokeNotifier(TMComponentSvc.java:876)
    at oracle.sysman.gcagent.tmmain.lifecycle.TMComponentSvc.invokeInitializationStep(TMComponentSvc.java:959)
    at oracle.sysman.gcagent.tmmain.lifecycle.TMComponentSvc.doInitializationStep(TMComponentSvc.java:800)
    at oracle.sysman.gcagent.tmmain.lifecycle.TMComponentSvc.notifierDriver(TMComponentSvc.java:740)
    at oracle.sysman.gcagent.tmmain.TMMain.startup(TMMain.java:217)
    at oracle.sysman.gcagent.tmmain.TMMain.agentMain(TMMain.java:459)
    at oracle.sysman.gcagent.tmmain.TMMain.main(TMMain.java:448)
    Caused by: java.io.IOException: Failed to open agent server wallet
    at oracle.sysman.gcagent.comm.http.AgentServerWallet.<init>(AgentServerWallet.java:60)
    at oracle.sysman.gcagent.comm.agent.http.AgentGCHttpsContext.newTrustManager(AgentGCHttpsContext.java:73)
    at oracle.sysman.gcagent.comm.http.BaseHttpsContext.<init>(BaseHttpsContext.java:65)
    at oracle.sysman.gcagent.comm.agent.http.AgentGCHttpsContext.<init>(AgentGCHttpsContext.java:57)
    at oracle.sysman.gcagent.comm.agent.http.ClientConfigComponent.cacheRepositoryUrl(ClientConfigComponent.java:461)
    ... 8 more
    Caused by: java.io.FileNotFoundException: /emcca/agent12c/agent_inst/sysman/config/server/repoconn.ora (No such file or directory)
    I've installed the agent using the following:
    ./agentDeploy.sh AGENT_BASE_DIR=/emcca/agent12c OMS_HOST=gc.respecti.com EM_UPLOAD_PORT=14511 AGENT_REGISTRATION_PASSWORD=guidei -forceConfigure -debug
    I am able to ping the gc.respecti.com from the agent target.
    Edited by: yakub21 on Jul 11, 2012 8:19 AM

    "java.io.IOException [Failed to open agent server wallet]"
    i think there is a problem with the secure of the Agent<->OMS.
    go to $agent_home/agent_inst/
    execute ./emctl unsecure agent
    after this
    execute ./emctl secure agent (insert the OMS Secure PW by prompt for PW)
    now the agent must work.
    Edited by: AndréK on 11.07.2012 06:18

  • How Do I Fix this "Internal Error" Message that Prevents Me Going to this Website?

    This is what the message popup says...
    "Internal Error
    Passed an unsupported xpath step ("(") to GetElementsByxPath"
    The website is avas.class.com, and this website is important because I sign-in to my account and take notes from the textbook content for my homework. This website works fine at the school, the library computers, and my desktop HP computer with Windows 7 software. I log into my account and everything's okay, until I get to the textbook stuff that's divided into lessons and different pages.
    My laptop is recently purchased on the Tuesday of Thanksgiving week. It's the Satellite P55-A5312 model. The only recent changes I've made is downloading proxpn.com free wireless protection software, downloading CCleaner, activating my account with pre-installed Norton security, and uninstalling the WildTangent game program. I also have Windows 8.1 version on this laptop.

    have Windows 8.1 version on this laptop.
    So you have Internet Explorer 11. Run the desktop version - not the one on the Start screen.
    The error is from JavaScript. Try turning it off as follows. On the Tools menu (tap the Alt key if you don't see it), click Internet options. On the Security tab, select the Internet zone. Click the Custom Level button. In the "Security Settings – Internet Zone" dialog box, set Disable for Active Scripting in the Scripting section. It's near the bottom. OK out.
    If that doesn't take care of things, reset IE11. It's the same as IE10.
       How to reset Internet Explorer settings
    -Jerry

  • "Fatal internal error:"memory.cpp",line 593"

    I need some help.
    Can some please explain what i am doing wrong here. i have created a Dll from a LV 7.0 vi. The header file looks something like this:
    typedef struct {
    long dimSize;
    double elt[1];
    } TD2;
    typedef TD2 **TD2Hdl;
    typedef struct {
    double f0;
    double df;
    TD2Hdl magnitude;
    } TD1;
    void __cdecl Spectrum(double freq, double amp, TD1 *Spec);
    And i have the following code where i allocate memory and attempt to call 'Spectrum':-
    TD1 *Power;
    double frequency=10, amplitude=1;
    Power = (TD1 *) malloc(sizeof(TD1));
    (*Power).magnitude = (TD2**)malloc(sizeof(TD2));
    *(*Power).magnitude = (TD2*)malloc(5000*sizeof(TD2));
    (*Power->magnitude)->dimSize = 5000;
    for (i=0; i<500;
    i++) {
    (*Power->magnitude)->elt[i] = 0;
    Spectrum(frequency, amplitude, Power);
    I keep getting Fatal internal error: "memory.cpp", line 593" when it tries to call Spectrum. I believe i have allocated memory correctly although i may be wrong. (I was getting 'exception' errors before). The VI i used to create the Dll contains a basic 'Function Generator' (sine wave) and a 'Power Spectrum'.
    I have looked at the Knowledge base and dll examples that come with LV 7.0 and have tried setCINArray and NumericArrayResize but have not had any luck. It seems like the documentation is for LV 6.0 and 6.1.
    Has anybody seen this or have any idea why i am getting this?
    Thanks

    > Can some please explain what i am doing wrong here. i have created a
    > Dll from a LV 7.0 vi. The header file looks something like this:
    >
    > double frequency=10, amplitude=1;
    > Power = (TD1 *) malloc(sizeof(TD1));
    > (*Power).magnitude = (TD2**)malloc(sizeof(TD2));
    > *(*Power).magnitude = (TD2*)malloc(5000*sizeof(TD2));
    >
    > (*Power->magnitude)->dimSize = 5000;
    >
    > for (i=0; i<500; i++) {
    > (*Power->magnitude)->elt[i] = 0;
    > }
    >
    > Spectrum(frequency, amplitude, Power);
    >
    > I keep getting Fatal internal error: "memory.cpp", line 593" when it
    > tries to call Spectrum. I believe i have allocated memory correctly
    > although i may be wrong. (I was getting 'exception' errors before).
    > The VI i used to create the Dll contains a basic
    'Function Generator'
    > (sine wave) and a 'Power Spectrum'.
    > I have looked at the Knowledge base and dll examples that come with LV
    > 7.0 and have tried setCINArray and NumericArrayResize but have not had
    > any luck. It seems like the documentation is for LV 6.0 and 6.1.
    >
    It looks to me like you are constructing arrays to pass to LV using
    malloc, instead of the labview.lib functions for creating or resizing LV
    array handles.
    You should refer to the manual on Calling External code for details on
    the construction of an array.
    Greg McKaskle

  • Sporadic errors in XML DB (ORA-00600: internal error code)

    We observe a sporadic error in an XML DB based application. The error message is as follows:
    java.sql.SQLException: ORA-00600: internal error code, arguments: [qmxMakeFake1], [], [], [], [], [], [], []
    Our application uses Java / JDBC to connect to the Oracle XML DB server (Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production). The error occurs for several SQL queries that involve changes to XML files in the database. Here are two representative examples:
    update EPIGRAPH_095 e set value(e) = insertchildxml(value(e),'/EpiGRAPH/analysis[global_settings/job_information/id/text()="070427_164952_518077172"]/class_analysis/attribute_calc_analysis','results',XMLType(:1)) WHERE e.existsNode('/EpiGRAPH/analysis[global_settings/job_information/id/text()="070427_164952_518077172"]/class_analysis/attribute_calc_analysis') = 1
    update EPIGRAPH_095 e set value(e) = updatexml(value(e),'/EpiGRAPH/analysis[global_settings/job_information/id/text()="070427_145224_574975277"]/global_settings/job_tracking/status',XMLType(:1)) WHERE e.existsNode('/EpiGRAPH/analysis[global_settings/job_information/id/text()="070427_145224_574975277"]/global_settings/job_tracking/status') = 1
    In these queries, ":1" is a CLOB that is created and filled from Java using the CLOB object. We use XML decomposition into object-relational tables via a registered schema.
    The error occurs sporadically in roughly 5% percent of the calls and we could not construct a testcase which reproduces it in a deterministic way.
    Thank you in advance,
    Christoph Bock

    Did you get any additional hints from your development colleagues? We still don't have any clear idea about how to solve the problem. Our current workaround is to repeat any failed query until it succeeds. Typically, one or two repetitions will do the job, but this workaround is obviously very ugly and may well give rise to infinite loops (as we don't understand the cause of the sporadic errors).
    Thank you and best regards,
    Christoph Bock

  • 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

Maybe you are looking for

  • HP LaserJet 1536dnf MFP will not copy or scan but does print

    My HP LaserJet 1536dnf MFP will not copy or scan but does print.  It does not matter if I use the ADF or the glass.  When copying or scanning I get a completey black page.  The light bar does move from one end of the printer glass to the other.  Ther

  • I am trying to use a Futek load sensor example and am running into all sorts of weird issues with the coding.

    Eons ago, when I took the Labview I & II courses, I remember the instructor stating that correct VI's had to have error line.  I downloaded this VI example from Futek's website and the code doesn't  use it. I am trying to utilize it for some data col

  • How to display standard ALV toolbar function in Webdynpro ABAP

    Hi All, Could any one please let me know that how to display the standard ALV functions. What I tried is as follows: data :lr_config_table type ref to cl_salv_wd_config_table. data lr_function type ref to cl_salv_wd_function_std Got the reference by

  • FLBP program gives an Error message

    Hi, I am using Lock box User Exit EXIT_RFEBLB20_001 and EXIT_RFEBLB20_002 to modify T_AVIP and create some entries in T_AVIR based on some conditions. Now when we run through Dev Client 800 which is for Testing it works fine. But when we run through

  • Delay in video and Audio

    I use iChat to video chat with two friends in the UK. One is a o2 user and the other is a talktalk user. Wen chatting we experience an up to 7 seconds delay in voice and Video and audio. When we change to Skype there is no delay. Can you explain and