Error in Provide Statement

TABLES     : PERNR.
INFOTYPES  : 0000.
get pernr .
PROVIDE * FROM P0000 BETWEEN PN-BEGPS AND PN-ENDPS.
    WRITE: /10 P0000-PERNR, 20 P0000-BEGDA,30 P0000-ENDDA.
  ENDPROVIDE.
in gave PN-BEGPS  =  01.01.2009 and PN-ENDPS = 31.12.2009
but for all record the result P0000-BEGDA,30 P0000-ENDDA. is coming as
01.01.2009 and 31.12.2009 .
can u give any suggestion
thanks and regards
Renjith

That is standard SAP Functionality.  If you want to see the actual dates you have to use a different method of getting your data.

Similar Messages

  • Error handling return code for Provide Statement

    Hi Experts,
    For select statement we have error handling return code sy-subrc.
    What is the error handling return code for provide.. end provide statement.
    Thanks,
    Ragu

    Ragu,
    Same thing.
    Check sy-subrc.
    sy-subrc is the return code for all ABAP statements as far as I know.
    Regards,
    Dilek

  • Error in this  statement

    This statement return an SQLException which says:
    Syntax error in INSERT INTO statement
    String mySql_1 = " INSERT INTO MEAL(MEAL_AMT_LOADED)"
    "WHERE MEAL.STU_NUM = '" jtfStNo.getText().trim()
    "'VALUES('"+jtfAmLd.getText().trim()+"')";
    I want the following query statement to allow me to insert a meal amount of a particular student through jtfAmLd into the MEAL table whereby a student must be identified by a student number also to be provided in jtfStNo.
    I'll be glad if you can help me with this statement
    Cool.

    I want to know how am i going to update the second table MEAL which
    contains a foreign key STU_NUM which referenced STUDENT the table which contains STU_NUM as a primary key using the criteria of a STU_NUM.
    Duffymo and DrClap i have tried UPDATE as follows:
    String query = "UPDATE STUDENT,MEAL"+
    "SET MEAL.MEAL_AMT_LOADED = '" + jtfAmLd.getText().trim() +"',"+
    "MEAL.MEAL_REL_MADE = '"+jtfRM.getText().trim()+ "' "+
    "WHERE STUDENT.STU_NUM = MEAL.STU_NUM"+
    "AND STUDENT.STU_NUM = '" + jtfStNo.getText().trim() + "'";
    But it returns an error which says:
    Failed to insertjava.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in UPDATE statement.

  • SQL error, Error in SQL statement

    hi all,
    in our project we are using 0SD_C03. while  i creating aggrigates it's showining "SQL error" and Error in SQL statement.
    please provide me some inputs.
    sasidhar

    check:
    Aggregate issue
    Problems with BITMAPINDEX under ORACLE in BW
    SAP Note Number: 159779
    No 'Star Transformation' for a Hierarchy Changerun
    SAP Note Number: 934281

  • Loading a js file gives this error: "missing ; before statement .. Line 1"

    After "Clearing Recent History" Cache
    The Error console shows:
    Error: missing ; before statement
    Source File: http://www.dmv-rom.ca/res2/res/js/modaldbox.js
    Line: 1, Column: 14
    Source Code:
    Date: Mon, 22 Aug 2011 20:05:41 GMT
    and points to the A in Aug
    The file content:
    * Modal Dialog Box
    * copyright 8th July 2006 by Stephen Chapman
    * http://javascript.about.com/
    * permission to use this Javascript on your web page is granted
    * provided that all of the code in this script (including these
    * comments) is used without any alteration
    function pageWidth() {return window.innerWidth != null? window.innerWidth: document.documentElement && document.documentElement.clientWidth ? document.documentElement.clientWidth:document.body != null? document.body.clientWidth:null;}function pageHeight() {return window.innerHeight != null? window.innerHeight: document.documentElement && document.documentElement.clientHeight ? document.documentElement.clientHeight:document.body != null? document.body.clientHeight:null;}function posLeft() {return typeof window.pageXOffset != 'undefined' ? window.pageXOffset:document.documentElement && document.documentElement.scrollLeft? document.documentElement.scrollLeft:document.body.scrollLeft? document.body.scrollLeft:0;}function posTop() {return typeof window.pageYOffset != 'undefined' ? window.pageYOffset:document.documentElement && document.documentElement.scrollTop? document.documentElement.scrollTop: document.body.scrollTop?document.body.scrollTop:0;}function $mdbox(x){return document.getElementById(x);}function scrollFix(){var obol=$mdbox('ol');obol.style.top=posTop()+'px';obol.style.left=posLeft()+'px'}function sizeFix(){var obol=$mdbox('ol');obol.style.height=pageHeight()+'px';obol.style.width=pageWidth()+'px';}function kp(e){ky=e?e.which:event.keyCode;if(ky==88||ky==120)hm();return false}function inf(h){tag=document.getElementsByTagName('select');for(i=tag.length-1;i>=0;i--)tag[i].style.visibility=h;tag=document.getElementsByTagName('iframe');for(i=tag.length-1;i>=0;i--)tag[i].style.visibility=h;tag=document.getElementsByTagName('object');for(i=tag.length-1;i>=0;i--)tag[i].style.visibility=h;}function sm(obl, wd, ht){var h='hidden';var b='block';var p='px';var obol=$mdbox('ol'); var obbxd = $mdbox('mbd');obbxd.innerHTML = $mdbox(obl).innerHTML;obol.style.height=pageHeight()+p;obol.style.width=pageWidth()+p;obol.style.top=posTop()+p;obol.style.left=posLeft()+p;obol.style.display=b;var tp=posTop()+((pageHeight()-ht)/2)-12;var lt=posLeft()+((pageWidth()-wd)/2)-12;var obbx=$mdbox('mbox');obbx.style.top=(tp<0?0:tp)+p;obbx.style.left=(lt<0?0:lt)+p;obbx.style.width=wd+p;obbx.style.height=ht+p;inf(h);obbx.style.display=b;return false;}function hm(){var v='visible';var n='none';$mdbox('ol').style.display=n;$mdbox('mbox').style.display=n;inf(v);document.onkeypress=''}function initmb(){var ab='absolute';var n='none';var obody=document.getElementsByTagName('body')[0];var frag=document.createDocumentFragment();var obol=document.createElement('div');obol.setAttribute('id','ol');obol.style.display=n;obol.style.position=ab;obol.style.top=0;obol.style.left=0;obol.style.zIndex=998;obol.style.width='100%';frag.appendChild(obol);var obbx=document.createElement('div');obbx.setAttribute('id','mbox');obbx.style.display=n;obbx.style.position=ab;obbx.style.zIndex=999;var obl=document.createElement('span');obbx.appendChild(obl);var obbxd=document.createElement('div');obbxd.setAttribute('id','mbd');obl.appendChild(obbxd);frag.insertBefore(obbx,obol.nextSibling);obody.insertBefore(frag,obody.firstChild);
    window.onscroll = scrollFix; window.onresize = sizeFix;}
    window.onload = initmb;
    So I am confused as Line 1 is a comment
    This same load error may occur on any of several javascript files that are loaded.
    Happens in FF 3.1.18 and 6.0

    Corrected file header
    * Modal Dialog Box
    * copyright 8th July 2006 by Stephen Chapman
    * http://javascript.about.com/
    * permission to use this Javascript on your web page is granted
    * provided that all of the code in this script (including these
    * comments) is used without any alteration
    **/

  • [svn] 2706: Improve the information given during parse errors by providing more context about which parent token is not expecting a particular child token to follow .

    Revision: 2706<br />Author:   [email protected]<br />Date:     2008-08-01 10:10:58 -0700 (Fri, 01 Aug 2008)<br /><br />Log Message:<br />-----------<br />Improve the information given during parse errors by providing more context about which parent token is not expecting a particular child token to follow.<br /><br />QA: Yes<br />Doc: No<br />Checkintests: Pass<br />Reviewer: Paul<br /><br />Bugs:<br /> SDK-15791 - [MXML Namespaces] Provide better error message when language tags are added as child of Declarations tag<br /> SDK-15659 - [MXML Namespaces] Error message not descriptive when Private tag is not immediate child of mxml document<br /> SDK-15669 - [MXML Namespaces] Error message not descriptive when incorrect <Library> and <Definition> tags are defined<br /><br />Ticket Links:<br />------------<br />    http://bugs.adobe.com/jira/browse/SDK-15791<br />    http://bugs.adobe.com/jira/browse/SDK-15659<br />    http://bugs.adobe.com/jira/browse/SDK-15669<br /><br />Modified Paths:<br />--------------<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InterfaceCompiler.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler_en.properties

    Thank you for the sympathy and the information about the Adobe.com forum Michael.
    I posted here because, to be honest, for a company that's acknowledged their installers and updaters and support needs some work, they seem very determined to obfuscate the means by which users can provide direct feedback to the company. Much like you, I've also noticed a trend in CS5 installations that mirrors the issues that were present in CS4. it's a sad state of affairs.
    As for my installation, you are also quite right to say that a clean install would have been a lot faster than what I went through with TS and it was actually my first idea. Before calling TS I'd actually read through the forums and noticed that a large number of users who were faced with my situation had no other choice but to reformat. I was just giving Adobe the benefit of the doubt and wasted 2 and a half weeks through that course of action...
    What makes this situation even more frustrating is that the installer failed on a fresh system. It was a custom-built design machine, assembled and configured by myself. The only software that had been installed on it prior to Design Premium was Firefox, an FTP client and the start of my problems, trial versions of various CS4 programs. I used trials just long enough to retire the previous design computer so that I wouldn't contravene the EULA's stipulation of not running more than one instance of software at the same time on different machines.  Turns out being honest once again penalised a legal customer.
    If there is just thing users should learn from my far from unique tale of failed tech support it's that if you ever run into a problem with the installation, don't bother calling TS, just reformat and start from scratch.  It might seem like it'll take longer to get going again, but in actuality, it's the opposite. Reformatting means you'll be up and running in about 1 or 2 days rather than 2 weeks.
    Marc

  • ERROR: CPU RED-State Exception Reset Recovery

    Installed the latest released firmware patch 119244-03 to a Sunfire V880. Now the system is in a continuous loop. The error message can only be viewed via a RSC. There is no way to break the loop and the OBP password has been altered by this, thus no way going through this ideal unless there is some other OBP password that I am not aware of when this firmware is placed on.
    If anyone has any suggestions, please provide them before I kick the living #$#! out of this system.
    Thanks!
    Below is a clip from the RSC session:
    Done
    0:0>Full CPU Test.....
    Done
    0:0>Memory Block.....Done
    0:0>IO-Bridge Tests.....Done
    0:0>Full Memory Test.....Done
    0:0>Enable Errors.....Done
    0:0>INFO:
    0:0>     POST Passed all devices.
    0:0>POST:     Return to OBP.
    POST Reset
    Enabling system bus....... Done
    Probing Memory............ Done
    Initializing CPUs......... Done
    Initializing boot memory.. Done
    Initializing OpenBoot
    Probing system devices
    Probing I/O buses
    ERROR: CPU2 RED State Exception
    ERROR: CPU2 Second fault; CPU will be offlined.
    System State (CPU2 reporting)
    BBC Devices: 0000.0000.0000.0005 0000.0000.0000.0000
    BBC Arb: 0000.0000.0000.000f 0000.0000.0000.000f
    BBC Quiesce: 0000.0000.0000.0009 0000.0000.0000.000c
    BBC WDogAct: 0000.0000.0000.0001 0000.0000.0000.0001
    BBC POR Gen: 0000.0000.0000.0000 0000.0000.0000.0000
    BBC XIR Gen: 0000.0000.0000.0000 0000.0000.0000.0000
    BBC POR Src: 0000.0000.0000.0000 0000.0000.0000.0000
    BBC XIR Src: 0000.0000.0000.000b 0000.0000.0000.000f
    BBC EBus TC: 014f.99fd.a7e6.3f29 014f.99fd.a7e6.3f29
    CPU0 Config/Control/Status registers:
    CPUVersion: 003e.0014.5400.0507
    SafConfig: 0caa.01bc.0000.8002 5:1 ID:0 HBM TOL:15
    SafBaseAdr: 0000.0400.0000.0000
    DispatchCtl: 0000.0000.0000.0009 MS SI
    DCacheCtl: 0000.0200.0000.0000 WE
    ECacheCtl: 0000.0000.0009.4400 3:1 8MB mode=3-3-3 R/W-turn:2 ECC:on
    ErrorEnable: 0000.0000.0000.000b CEEN NCEEN UCEEN
    AFAR: 0000.0000.0000.0000
    AFSR: 0000.0000.0000.0000 (no errors set)
    DMMU SFAR: 0000.0000.fff7.90c0
    DMMU SFSR: 0000.0000.0080.8008 TM PR
    IMMU SFSR: 0000.0000.0000.0000 (no status set)
    CPU0 Trap registers: Trap Level = 1
    *TL=1 TT:     0000.0000.0000.0003
    TSTATE: 0000.0099.5800.1600 XCC:NC ICC:NC MM=TSO PEF PRIV IE
    TPC: 0000.0000.f004.fa80
    TnPC: 0000.0000.f004.fa84
    TL=2 TT: 0000.0000.0000.0068
    TSTATE: 0000.0099.5804.1400 XCC:NC ICC:NC MM=TSO PEF PRIV
    TPC: 0000.0000.f004.a2c0
    TnPC: 0000.0000.f004.a2c4
    TL=3 TT: 0000.0000.0000.0000
    TSTATE: 0000.0000.0000.0000 XCC:(clear) ICC:(clear) MM=TSO
    TPC: 0000.0000.0000.0000
    TnPC: 0000.0000.0000.0000
    TL=4 TT: 0000.0000.0000.0000
    TSTATE: 0000.0000.0000.0000 XCC:(clear) ICC:(clear) MM=TSO
    TPC: 0000.0000.0000.0000
    TnPC: 0000.0000.0000.0000
    TL=5 TT: 0000.0000.0000.0000
    TSTATE: 0000.0000.0000.0000 XCC:(clear) ICC:(clear) MM=TSO
    TPC: 0000.0000.0000.0000
    TnPC: 0000.0000.0000.0000
    CPU0 General registers:
    %PIL: 15
    %PC: 0000.0000.f004.fa80
    %nPC: 0000.0000.f004.fa84
    %PSTATE: 0000.0000.0000.0035 MM=TSO AG
    %CCR: 0000.0000.0000.0099 XCC:NC ICC:NC
    %FPRS: 0000.0000.0000.0005 FEF DL
    %v0: 0000.0000.0000.0000 %v1: 0000.0000.0000.004a %v2: 0000.0000.0000.0000
    %v3: 0000.0000.fff7.8000 %v4: 0000.0000.0000.10e8 %v5: 0caa.01bc.0000.8002
    %v6: 0000.0000.0000.007f %v7: 0000.0000.0000.0134
    %m0: 0000.0000.0000.0000 %m1: 0000.0000.0000.000d %m2: 8000.00a0.ffbf.80b6
    %m3: 0000.0000.fff7.8000 %m4: 0000.0000.fff7.8000 %m5: ffff.fffc.003f.e000
    %m6: 8000.00a0.ffbe.a0b6 %m7: 0000.0000.0000.0001
    %a0: 0000.0000.0000.0000 %a1: 0000.07ff.f000.0000 %a2: 0000.0200.0000.0000
    %a3: ffff.ffff.f018.23b2 %a4: 0000.0000.0000.0000 %a5: 0000.0000.0000.0000
    %a6: 0000.0000.f000.dacc %a7: ffff.ffff.f001.fd8c
    %g0: 0000.0000.0000.0000 %g1: 0000.0000.ffff.ffff %g2: 0000.0000.f000.0000
    %g3: 0000.0000.fff7.8000 %g4: 0000.0000.0004.ff04 %g5: 0000.0000.f004.fb44
    %g6: 0000.0000.fef7.27f8 %g7: 0000.0000.fef7.1800
    %o0: 0000.0000.f000.00e0 %o1: 0000.0000.0000.0005 %o2: 0000.0000.0000.0004
    %o3: 0000.0000.f000.00e0 %o4: 0000.0000.0000.001f %o5: 0000.0000.0000.0000
    %o6: f000.0000.0000.c5f1 %o7: 0000.0000.f000.dacc
    %l0: 0000.0000.fef7.0000 %l1: 0000.0000.0000.4020 %l2: 0000.0000.0000.0021
    %l3: 0000.0000.0000.0011 %l4: 0000.0000.f004.6e48 %l5: 0000.0000.0000.0000
    %l6: 0000.07ff.fff8.0006 %l7: 0000.0000.07ff.fdc1
    %i0: ffff.ffff.ffff.ffff %i1: 0000.0000.0000.0000 %i2: 0000.0000.0000.0000
    %i3: 0000.0000.0000.0000 %i4: 0000.0000.0000.0000 %i5: 0000.0000.0000.0000
    %i6: 0000.0000.0000.0000 %i7: 0000.0000.0000.0000
    CPU0 Mem Ctrl registers:
    Mem Time Ctl1: 106e.9246.18a2.959a
    Mem Time Ctl2: 25c9.a82e.4a09.0020
    Mem Time Ctl3: 1050.04c9.24a2.82d0
    Mem Time Ctl4: 257d.382c.4a69.0020
    Mem Addr Dec1: 8000.7e02.8002.0000
    Mem Addr Dec2: 8000.7e02.8002.0200
    Mem Addr Dec3: 8000.7e02.8002.0400
    Mem Addr Dec4: 8000.7e02.8002.0600
    Mem Addr Ctl: 4904.1124.4221.1088
    CPU2 Config/Control/Status registers:
    CPUVersion: 003e.0014.5400.0507
    SafConfig: 1534.01bc.0004.8002 5:1 ID:2 HBM TOL:15
    SafBaseAdr: 0000.0400.0100.0000
    DispatchCtl: 0000.0000.0000.003b MS IFP SI RPE BPE
    DCacheCtl: 0000.0000.0000.0000
    ECacheCtl: 0000.0000.0009.4400 3:1 8MB mode=3-3-3 R/W-turn:2 ECC:on
    ErrorEnable: 0000.0000.0000.000b CEEN NCEEN UCEEN
    AFAR: 0000.07ff.ea00.2000
    AFSR: 0000.0000.0000.0000 (no errors set)
    DMMU SFAR: 0000.0000.fecd.a000
    DMMU SFSR: 0000.0000.0080.800c TM PR W
    IMMU SFSR: 0000.0000.0004.8028 TM CT1 PR
    CPU2 Trap registers: Trap Level = 5
    TL=1 TT: 0000.0000.0000.0064
    TSTATE: 0000.0088.1500.1600 XCC:N ICC:N MM=TSO PEF PRIV IE
    TPC: 0000.0000.f003.e124
    TnPC: 0000.0000.f003.e128
    TL=2 TT: 0000.0000.0000.0064
    TSTATE: 0000.0088.1504.1400 XCC:N ICC:N MM=TSO PEF PRIV
    TPC: 0000.0000.f000.0c80
    TnPC: 0000.0000.f000.0c84
    TL=3 TT: 0000.0000.0000.0064
    TSTATE: 0000.0088.1504.1400 XCC:N ICC:N MM=TSO PEF PRIV
    TPC: 0000.0000.f000.4c80
    TnPC: 0000.0000.f000.4c84
    TL=4 TT: 0000.0000.0000.0064
    TSTATE: 0000.0088.1504.1400 XCC:N ICC:N MM=TSO PEF PRIV
    TPC: 0000.0000.f000.4c80
    TnPC: 0000.0000.f000.4c84
    *TL=5 TT:     0000.0000.0000.0064
    TSTATE: 0000.0088.1504.1400 XCC:N ICC:N MM=TSO PEF PRIV
    TPC: 0000.0000.f000.4c80
    TnPC: 0000.0000.f000.4c84
    CPU2 General registers:
    %PIL: 13
    %PC: 0000.0000.f000.4c80
    %nPC: 0000.0000.f000.4c84
    %PSTATE: 0000.0000.0000.0434 MM=TSO AG
    %CCR: 0000.0000.0000.0080 XCC:N ICC:(clear)
    %FPRS: 0000.0000.0000.0006 FEF DU
    %v0: 0000.0000.0000.0000 %v1: 0000.0000.0000.0000 %v2: 0000.0000.0000.0000
    %v3: 0000.0000.0000.0000 %v4: ffff.ffff.0000.0000 %v5: 0000.0000.0000.0000
    %v6: 0000.0000.0000.0000 %v7: 0001.2000.0040.0000
    %m0: 0000.0000.0000.0000 %m1: 0000.0000.0000.06c0 %m2: 0000.0000.0000.0005
    %m3: 0000.0000.0000.0000 %m4: 0000.0000.0000.0000 %m5: 0000.0000.fef7.f000
    %m6: 0000.0000.f003.ca50 %m7: ffff.ffff.f002.02cc
    %a0: 0000.0000.0000.0000 %a1: 504f.5354.0000.0000 %a2: 0000.0200.0000.0000
    %a3: 0000.0000.fecd.a000 %a4: 0000.0000.fecd.a000 %a5: 0000.0000.fef7.f000
    %a6: 0000.0000.f003.ca50 %a7: ffff.ffff.f002.02cc
    %g0: 0000.0000.0000.0000 %g1: ffff.ffff.f017.7800 %g2: 0000.0000.f000.0000
    %g3: 0000.0000.fff7.8000 %g4: 0000.0000.f03f.c000 %g5: 0000.0000.f004.00dc
    %g6: 0000.0000.fef7.e6a0 %g7: 0000.0000.fef7.d7e8
    %o0: 0000.0000.0500.0000 %o1: 0000.0000.0007.fdf7 %o2: 0000.0000.0000.0000
    %o3: 0000.0000.f000.00e0 %o4: 0000.0000.0000.0000 %o5: 0000.0000.0000.0008
    %o6: 0000.0000.fff5.9701 %o7: 0000.0000.f003.ca50
    %l0: ffff.ffff.f172.6000 %l1: 0000.0000.0000.2000 %l2: 0000.0000.fecd.6000
    %l3: ffff.fffc.0000.0000 %l4: 0000.0000.0000.0007 %l5: 8000.00a0.ffb5.00b6
    %l6: 0000.0000.0000.0000 %l7: 0000.0000.f002.a4b8
    %i0: 0000.0000.0000.0000 %i1: 0000.0001.0000.0000 %i2: 0000.0000.0000.2710
    %i3: 0000.0000.0000.0004 %i4: 0000.0000.0000.0001 %i5: 0000.0000.0000.0000
    %i6: 0000.0000.0000.0000 %i7: 0000.0000.0000.0000
    CPU2 Mem Ctrl registers:
    Mem Time Ctl1: 106e.9246.18a2.959a
    Mem Time Ctl2: 25c9.a82e.4a09.0020
    Mem Time Ctl3: 1050.04c9.24a2.82d0
    Mem Time Ctl4: 257d.382c.4a69.0020
    Mem Addr Dec1: 8000.7e02.8002.0100
    Mem Addr Dec2: 8000.7e02.8002.0300
    Mem Addr Dec3: 8000.7e02.8002.0500
    Mem Addr Dec4: 8000.7e02.8002.0700
    Mem Addr Ctl: 4904.1124.4221.1088
    IO-Bridge 8 at 0000.0400.0400.0000
    Device ID fc00.0000.0011.a954
    Ctl/Stat 0255.5554.0080.7e02
    Error Ctl fc00.0000.0000.03e0
    Int Ctl 8000.0000.0000.0017
    Error Log 0000.0000.0000.0000
    ECC Ctl e000.0000.0000.0000
    EStar Ctl 0000.0000.0000.0001
    Queue Ctl 0000.0000.0000.0000
    Address Match Address Mask
    PCIA Mem 8000.07fd.0000.0000 0000.07ff.0000.0000
    PCIA C/IO 8000.07ff.ec00.0000 0000.07ff.fe00.0000
    PCIB Mem 8000.07fe.0000.0000 0000.07ff.0000.0000
    PCIB C/IO 8000.07ff.ee00.0000 0000.07ff.fe00.0000
    AFAR AFSR
    UE 0000.0000.0000.0000 0000.0000.0000.0000
    CE 0000.0000.0000.0000 0000.0000.0000.0000
    PCI A 0000.0000.0000.0000 0000.0000.0000.0000
    PCI B 0000.0000.0000.0000 0000.0000.0000.0000
    Control/Status Idle Check Diag Diagnostic
    PCI A 0000.0002.010e.003f 0000.0000.0000.8000 0000.0000.0000.0000
    PCI B 0000.0000.010e.003f 0000.0000.0000.8000 0000.0000.0000.0000
    IO-Bridge 9 at 0000.0400.0480.0000
    Device ID fc00.0000.0013.a954
    Ctl/Stat 0255.59a8.0090.7e02
    Error Ctl fc00.0000.0000.03e0
    Int Ctl 8000.0000.0000.0017
    Error Log 0000.0000.0000.0000
    ECC Ctl e000.0000.0000.0000
    EStar Ctl 0000.0000.0000.0001
    Queue Ctl 0000.0000.0000.0000
    Address Match Address Mask
    PCIA Mem 8000.07fb.0000.0000 0000.07ff.0000.0000
    PCIA C/IO 8000.07ff.e800.0000 0000.07ff.fe00.0000
    PCIB Mem 8000.07fc.0000.0000 0000.07ff.0000.0000
    PCIB C/IO 8000.07ff.ea00.0000 0000.07ff.fe00.0000
    AFAR AFSR
    UE 0000.0000.0000.0000 0000.0000.0000.0000
    CE 0000.0000.0000.0000 0000.0000.0000.0000
    PCI A 0000.0000.0000.0000 0000.0000.0000.0000
    PCI B 0000.0000.0000.0000 0000.0000.0000.0000
    Control/Status Idle Check Diag Diagnostic
    PCI A 0000.0002.010e.003f 0000.0000.0000.8000 0000.0000.0000.0000
    PCI B 0000.0000.010e.003f 0000.0000.0000.8000 0000.0000.0000.0000
    Resetting...
    ERROR: CPU RED-State Exception Reset Recovery
    FATAL: All CPUs failed or disabled! Attempting recovery...
    FATAL: All CPUs failed or disabled! Attempting recovery...
    Executing POST w/%o0 = 0000.0800.0101.4041
    0:0>
    0:0>@(#) Sun Fire[TM] V880/V890 POST 4.18.11 2006/05/03 07:51
    /export/delivery/delivery/4.18/4.18.11/post4.18.0/Camelot/daktari/integrated (root)
    0:0>Copyright � 2006 Sun Microsystems, Inc. All rights reserved
    SUN PROPRIETARY/CONFIDENTIAL.
    Use is subject to license terms.
    0:0>Jump from OBP->POST.
    0:0>Diag level set to MAX.
    0:0>Verbosity level set to NORMAL.
    0:0>
    0:0>Start selftest...
    0:0>CPUs present in system: 0:0 2:0
    0:0>Test CPU(s).....Done
    0:0>Init Scan/I2C.....Done
    0:0>Basic Memory Test.....Done
    0:0>Full CPU Test.....Done
    0:0>Memory Block.....Done
    0:0>IO-Bridge Tests.....Done
    0:0>Full Memory Test.....Done
    0:0>Enable Errors.....Done
    0:0>INFO:
    0:0>     POST Passed all devices.
    0:0>POST:     Return to OBP.
    POST Reset
    Enabling system bus....... Done
    Probing Memory............ Done
    Initializing CPUs......... Done
    Initializing boot memory.. Done
    Initializing OpenBoot
    Probing system devices
    Probing I/O buses
    ERROR: CPU2 RED State Exception
    ERROR: CPU2 Second fault; CPU will be offlined.
    System State (CPU2 reporting)
    BBC Devices: 0000.0000.0000.0005 0000.0000.0000.0000
    BBC Arb: 0000.0000.0000.000f 0000.0000.0000.000f
    BBC Quiesce: 0000.0000.0000.0009 0000.0000.0000.000c
    BBC WDogAct: 0000.0000.0000.0001 0000.0000.0000.0001
    BBC POR Gen: 0000.0000.0000.0000 0000.0000.0000.0000
    BBC XIR Gen: 0000.0000.0000.0000 0000.0000.0000.0000
    BBC POR Src: 0000.0000.0000.0000 0000.0000.0000.0000
    BBC XIR Src: 0000.0000.0000.000b 0000.0000.0000.000f
    BBC EBus TC: 014f.99fd.a7e6.3f29 014f.99fd.a7e6.3f29
    CPU0 Config/Control/Status registers:
    CPUVersion: 003e.0014.5400.0507
    SafConfig: 0caa.01bc.0000.8002 5:1 ID:0 HBM TOL:15
    SafBaseAdr: 0000.0400.0000.0000
    DispatchCtl: 0000.0000.0000.0009 MS SI
    DCacheCtl: 0000.0200.0000.0000 WE
    ECacheCtl: 0000.0000.0009.4400 3:1 8MB mode=3-3-3 R/W-turn:2 ECC:on
    ErrorEnable: 0000.0000.0000.000b CEEN NCEEN UCEEN
    AFAR: 0000.0000.0000.0000
    AFSR: 0000.0000.0000.0000 (no errors set)
    DMMU SFAR: 0000.0000.fff7.90c0
    DMMU SFSR: 0000.0000.0080.8008 TM PR
    IMMU SFSR: 0000.0000.0000.0000 (no status set)
    CPU0 Trap registers: Trap Level = 1
    *TL=1 TT:     0000.0000.0000.0003
    TSTATE: 0000.0099.5800.1600 XCC:NC ICC:NC MM=TSO PEF PRIV IE
    TPC: 0000.0000.f004.fa80
    TnPC: 0000.0000.f004.fa84
    TL=2 TT: 0000.0000.0000.0068
    TSTATE: 0000.0099.5804.1400 XCC:NC ICC:NC MM=TSO PEF PRIV
    TPC: 0000.0000.f004.a2c0
    TnPC: 0000.0000.f004.a2c4
    TL=3 TT: 0000.0000.0000.0000
    TSTATE: 0000.0000.0000.0000 XCC:(clear) ICC:(clear) MM=TSO
    TPC: 0000.0000.0000.0000
    TnPC: 0000.0000.0000.0000
    TL=4 TT: 0000.0000.0000.0000
    TSTATE: 0000.0000.0000.0000 XCC:(clear) ICC:(clear) MM=TSO
    TPC: 0000.0000.0000.0000
    TnPC: 0000.0000.0000.0000
    TL=5 TT: 0000.0000.0000.0000
    TSTATE: 0000.0000.0000.0000 XCC:(clear) ICC:(clear) MM=TSO
    TPC: 0000.0000.0000.0000
    TnPC: 0000.0000.0000.0000
    CPU0 General registers:
    %PIL: 15
    %PC: 0000.0000.f004.fa80
    %nPC: 0000.0000.f004.fa84
    %PSTATE: 0000.0000.0000.0035 MM=TSO AG
    %CCR: 0000.0000.0000.0099 XCC:NC ICC:NC
    %FPRS: 0000.0000.0000.0005 FEF DL
    %v0: 0000.0000.0000.0000 %v1: 0000.0000.0000.004a %v2: 0000.0000.0000.0000
    %v3: 0000.0000.fff7.8000 %v4: 0000.0000.0000.10e8 %v5: 0caa.01bc.0000.8002
    %v6: 0000.0000.0000.007f %v7: 0000.0000.0000.0134
    %m0: 0000.0000.0000.0000 %m1: 0000.0000.0000.000d %m2: 8000.00a0.ffbf.80b6
    %m3: 0000.0000.fff7.8000 %m4: 0000.0000.fff7.8000 %m5: ffff.fffc.003f.e000
    %m6: 8000.00a0.ffbe.a0b6 %m7: 0000.0000.0000.0001
    %a0: 0000.0000.0000.0000 %a1: 0000.07ff.f000.0000 %a2: 0000.0200.0000.0000
    %a3: ffff.ffff.f018.23b2 %a4: 0000.0000.0000.0000 %a5: 0000.0000.0000.0000
    %a6: 0000.0000.f000.dacc %a7: ffff.ffff.f001.fd8c
    %g0: 0000.0000.0000.0000 %g1: 0000.0000.ffff.ffff %g2: 0000.0000.f000.0000
    %g3: 0000.0000.fff7.8000 %g4: 0000.0000.0004.ff04 %g5: 0000.0000.f004.fb44
    %g6: 0000.0000.fef7.27f8 %g7: 0000.0000.fef7.1800
    %o0: 0000.0000.f000.00e0 %o1: 0000.0000.0000.0005 %o2: 0000.0000.0000.0004
    %o3: 0000.0000.f000.00e0 %o4: 0000.0000.0000.001f %o5: 0000.0000.0000.0000
    %o6: f000.0000.0000.c5f1 %o7: 0000.0000.f000.dacc
    %l0: 0000.0000.fef7.0000 %l1: 0000.0000.0000.4020 %l2: 0000.0000.0000.0021
    %l3: 0000.0000.0000.0011 %l4: 0000.0000.f004.6e48 %l5: 0000.0000.0000.0000
    %l6: 0000.07ff.fff8.0006 %l7: 0000.0000.07ff.fdc1
    %i0: ffff.ffff.ffff.ffff %i1: 0000.0000.0000.0000 %i2: 0000.0000.0000.0000
    %i3: 0000.0000.0000.0000 %i4: 0000.0000.0000.0000 %i5: 0000.0000.0000.0000
    %i6: 0000.0000.0000.0000 %i7: 0000.0000.0000.0000
    CPU0 Mem Ctrl registers:
    Mem Time Ctl1: 106e.9246.18a2.959a
    Mem Time Ctl2: 25c9.a82e.4a09.0020
    Mem Time Ctl3: 1050.04c9.24a2.82d0
    Mem Time Ctl4: 257d.382c.4a69.0020
    Mem Addr Dec1: 8000.7e02.8002.0000
    Mem Addr Dec2: 8000.7e02.8002.0200
    Mem Addr Dec3: 8000.7e02.8002.0400
    Mem Addr Dec4: 8000.7e02.8002.0600
    Mem Addr Ctl: 4904.1124.4221.1088
    CPU2 Config/Control/Status registers:
    CPUVersion: 003e.0014.5400.0507
    SafConfig: 1534.01bc.0004.8002 5:1 ID:2 HBM TOL:15
    SafBaseAdr: 0000.0400.0100.0000
    DispatchCtl: 0000.0000.0000.003b MS IFP SI RPE BPE
    DCacheCtl: 0000.0000.0000.0000
    ECacheCtl: 0000.0000.0009.4400 3:1 8MB mode=3-3-3 R/W-turn:2 ECC:on
    ErrorEnable: 0000.0000.0000.000b CEEN NCEEN UCEEN
    AFAR: 0000.07ff.ea00.2000
    AFSR: 0000.0000.0000.0000 (no errors set)
    DMMU SFAR: 0000.0000.fecd.a000
    DMMU SFSR: 0000.0000.0080.800c TM PR W
    IMMU SFSR: 0000.0000.0004.8028 TM CT1 PR
    CPU2 Trap registers: Trap Level = 5
    TL=1 TT: 0000.0000.0000.0064
    TSTATE: 0000.0088.1500.1600 XCC:N ICC:N MM=TSO PEF PRIV IE
    TPC: 0000.0000.f003.e124
    TnPC: 0000.0000.f003.e128
    TL=2 TT: 0000.0000.0000.0064
    TSTATE: 0000.0088.1504.1400 XCC:N ICC:N MM=TSO PEF PRIV
    TPC: 0000.0000.f000.0c80
    TnPC: 0000.0000.f000.0c84
    TL=3 TT: 0000.0000.0000.0064
    TSTATE: 0000.0088.1504.1400 XCC:N ICC:N MM=TSO PEF PRIV
    TPC: 0000.0000.f000.4c80
    TnPC: 0000.0000.f000.4c84
    TL=4 TT: 0000.0000.0000.0064
    TSTATE: 0000.0088.1504.1400 XCC:N ICC:N MM=TSO PEF PRIV
    TPC: 0000.0000.f000.4c80
    TnPC: 0000.0000.f000.4c84
    *TL=5 TT:     0000.0000.0000.0064
    TSTATE: 0000.0088.1504.1400 XCC:N ICC:N MM=TSO PEF PRIV
    TPC: 0000.0000.f000.4c80
    TnPC: 0000.0000.f000.4c84
    CPU2 General registers:
    %PIL: 13
    %PC: 0000.0000.f000.4c80
    %nPC: 0000.0000.f000.4c84
    %PSTATE: 0000.0000.0000.0434 MM=TSO AG
    %CCR: 0000.0000.0000.0080 XCC:N ICC:(clear)
    %FPRS: 0000.0000.0000.0006 FEF DU
    %v0: 0000.0000.0000.0000 %v1: 0000.0000.0000.0000 %v2: 0000.0000.0000.0000
    %v3: 0000.0000.0000.0000 %v4: ffff.ffff.0000.0000 %v5: 0000.0000.0000.0000
    %v6: 0000.0000.0000.0000 %v7: 0001.2000.0040.0000
    %m0: 0000.0000.0000.0000 %m1: 0000.0000.0000.06c0 %m2: 0000.0000.0000.0005
    %m3: 0000.0000.0000.0000 %m4: 0000.0000.0000.0000 %m5: 0000.0000.fef7.f000
    %m6: 0000.0000.f003.ca50 %m7: ffff.ffff.f002.02cc
    %a0: 0000.0000.0000.0000 %a1: 504f.5354.0000.0000 %a2: 0000.0200.0000.0000
    %a3: 0000.0000.fecd.a000 %a4: 0000.0000.fecd.a000 %a5: 0000.0000.fef7.f000
    %a6: 0000.0000.f003.ca50 %a7: ffff.ffff.f002.02cc
    %g0: 0000.0000.0000.0000 %g1: ffff.ffff.f017.7800 %g2: 0000.0000.f000.0000
    %g3: 0000.0000.fff7.8000 %g4: 0000.0000.f03f.c000 %g5: 0000.0000.f004.00dc
    %g6: 0000.0000.fef7.e6a0 %g7: 0000.0000.fef7.d7e8
    %o0: 0000.0000.0500.0000 %o1: 0000.0000.0007.fdf7 %o2: 0000.0000.0000.0000
    %o3: 0000.0000.f000.00e0 %o4: 0000.0000.0000.0000 %o5: 0000.0000.0000.0008
    %o6: 0000.0000.fff5.9701 %o7: 0000.0000.f003.ca50
    %l0: ffff.ffff.f172.6000 %l1: 0000.0000.0000.2000 %l2: 0000.0000.fecd.6000
    %l3: ffff.fffc.0000.0000 %l4: 0000.0000.0000.0007 %l5: 8000.00a0.ffb5.00b6
    %l6: 0000.0000.0000.0000 %l7: 0000.0000.f002.a4b8
    %i0: 0000.0000.0000.0000 %i1: 0000.0001.0000.0000 %i2: 0000.0000.0000.2710
    %i3: 0000.0000.0000.0004 %i4: 0000.0000.0000.0001 %i5: 0000.0000.0000.0000
    %i6: 0000.0000.0000.0000 %i7: 0000.0000.0000.0000
    CPU2 Mem Ctrl registers:
    Mem Time Ctl1: 106e.9246.18a2.959a
    Mem Time Ctl2: 25c9.a82e.4a09.0020
    Mem Time Ctl3: 1050.04c9.24a2.82d0
    Mem Time Ctl4: 257d.382c.4a69.0020
    Mem Addr Dec1: 8000.7e02.8002.0100
    Mem Addr Dec2: 8000.7e02.8002.0300
    Mem Addr Dec3: 8000.7e02.8002.0500
    Mem Addr Dec4: 8000.7e02.8002.0700
    Mem Addr Ctl: 4904.1124.4221.1088
    IO-Bridge 8 at 0000.0400.0400.0000
    Device ID fc00.0000.0011.a954
    Ctl/Stat 0255.5554.0080.7e02
    Error Ctl fc00.0000.0000.03e0
    Int Ctl 8000.0000.0000.0017
    Error Log 0000.0000.0000.0000
    ECC Ctl e000.0000.0000.0000
    EStar Ctl 0000.0000.0000.0001
    Queue Ctl 0000.0000.0000.0000
    Address Match Address Mask
    PCIA Mem 8000.07fd.0000.0000 0000.07ff.0000.0000
    PCIA C/IO 8000.07ff.ec00.0000 0000.07ff.fe00.0000
    PCIB Mem 8000.07fe.0000.0000 0000.07ff.0000.0000
    PCIB C/IO 8000.07ff.ee00.0000 0000.07ff.fe00.0000
    AFAR AFSR
    UE 0000.0000.0000.0000 0000.0000.0000.0000
    CE 0000.0000.0000.0000 0000.0000.0000.0000
    PCI A 0000.0000.0000.0000 0000.0000.0000.0000
    PCI B 0000.0000.0000.0000 0000.0000.0000.0000
    Control/Status Idle Check Diag Diagnostic
    PCI A 0000.0002.010e.003f 0000.0000.0000.8000 0000.0000.0000.0000
    PCI B 0000.0000.010e.003f 0000.0000.0000.8000 0000.0000.0000.0000
    IO-Bridge 9 at 0000.0400.0480.0000
    Device ID fc00.0000.0013.a954
    Ctl/Stat 0255.59a8.0090.7e02
    Error Ctl fc00.0000.0000.03e0
    Int Ctl 8000.0000.0000.0017
    Error Log 0000.0000.0000.0000
    ECC Ctl e000.0000.0000.0000
    EStar Ctl 0000.0000.0000.0001
    Queue Ctl 0000.0000.0000.0000
    Address Match Address Mask
    PCIA Mem 8000.07fb.0000.0000 0000.07ff.0000.0000
    PCIA C/IO 8000.07ff.e800.0000 0000.07ff.fe00.0000
    PCIB Mem 8000.07fc.0000.0000 0000.07ff.0000.0000
    PCIB C/IO 8000.07ff.ea00.0000 0000.07ff.fe00.0000
    AFAR AFSR
    UE 0000.0000.0000.0000 0000.0000.0000.0000
    CE 0000.0000.0000.0000 0000.0000.0000.0000
    PCI A 0000.0000.0000.0000 0000.0000.0000.0000
    PCI B 0000.0000.0000.0000 0000.0000.0000.0000
    Control/Status Idle Check Diag Diagnostic
    PCI A 0000.0002.010e.003f 0000.0000.0000.8000 0000.0000.0000.0000
    PCI B 0000.0000.010e.003f 0000.0000.0000.8000 0000.0000.0000.0000
    Resetting...
    ERROR: CPU RED-State Exception Reset Recovery
    FATAL: All CPUs failed or disabled! Attempting recovery...
    FATAL: All CPUs failed or disabled! Attempting recovery...
    Executing POST w/%o0 = 0000.0800.0101.4041
    0:0>
    0:0>@(#) Sun Fire[TM] V880/V890 POST 4.18.11 2006/05/03 07:51
    /export/delivery/delivery/4.18/4.18.11/post4.18.0/Camelot/daktari/integrated (root)
    0:0>Copyright � 2006 Sun Microsystems, Inc. All rights reserved
    SUN PROPRIETARY/CONFIDENTIAL.
    Use is subject to license terms.
    0:0>Jump from OBP->POST.
    0:0>Diag level set to MAX.
    0:0>Verbosity level set to NORMAL.
    0:0>
    0:0>Start selftest...
    0:0>CPUs present in system: 0:0 2:0
    0:0>Test CPU(s).....

    I had a similar problem with the "CPU RED-State Exception Reset Recovery" message and the circular booting. Replacing the graphics card fixed the problem.
    Problem history:
    I had a refurb V490 that was set to console to ttya. The base OS and some drivers had been installed by a coworker, but I was going to configure the network, disk, etc. I could not log in with the password he had given me. We concluded that the password was trashed and I tried booting from CDROM. On the Wyse terminal this was frustrating, but there was a video card and a VGA console already hooked up, so I decided to do boot prom "input-device=keyboard" and "output-device=screen". I then tried "boot cdrom" and got the circular booting with the "CPU RED-State..." error message. I tried plain old "boot", same problem. And no output to the console monitor. I almost called Sun to check out the CPUs, but I was suspicious. Searched, found the notes in this forum. Located a new video card, installed it. Booted up flawlessly from disk, and tried to log in again. This
    time the password worked perfectly as well, so I didn't bother with the cdrom booting.
    Thanks for the help. And you guys who made fun of the guy with the graphics card solution, be more considerate next time, eh?
    -Ken Rich

  • Error:  Current provider does not support returning multiple recordsets from a single execution

    Hello,
    The following piece of code which has been working for the
    past five years suddenly started giving me the following error:
    Current provider does not support returning multiple recordsets
    from a single execution
    We have recenlty moved this site to a new server. Could this
    error be related to their CFAdmin settings? Eveything else on the
    site seems to be working fine. Or am I using an outdated tag or
    something?
    Any light in this direction is appreciated, thanks.
    Here's the code:

    There doesn't seem to be anything that seems wrong with the
    code. It might have something to do with the Max Pooled Statements
    or Number of Connections settings in the CF Administrator, but it
    could just as easily have something to do with a setting on the
    database. I would check with your provider.

  • Javac(1.4.2) gives error in import statement

    Hi All,
    I am facing a surprising problem. I have 2 java class files. I write the import statement for second one in the first one. There is no package & these are in the same directory. I have compiled the second one. But when I try to compile the First one. Javac throws error at import statement like below :
    D:\Clubs\oct\6>javac -d . ManojTest.java
    ManojTest.java:1: '.' expected
    import SessionBean;
    ^
    1 error
    My Java Files are as below :
    import SessionBean;
    public class ManojTest
         public static void main(String args[])
    //ManojTest.java
    public class SessionBean
         public static void main(String args[])
    //SessionBean.java
    I have compiled SessionBean.java successfully but when I try to compile ManojTest.java I get error mentioned above.
    However this probelm comes when I use j2se 1.4.2.. but works in j2se 1.3.1..
    Another way could be I use package structure.
    But I can't do any of these, as I have to port my big project to j2se1.4.2.. from j2se1.3.1.. (Live project is running on Tomcat).
    Problems is similar in Unix & Windows both.
    Is this javac compiler issue or there is some setting which I can make.
    I have already included . (dot) in PATH & CLASSPATH environment varibales.
    Please help me out if there is any way around this, as i am stuck up in between
    thank you
    Manoj :confused:

    Use a package and then add that package in your classpathOr don't use a package, leave the file in the default (noname) package, and don't use the import statement. Java will find it in the default package without the import.
    Explicit import statements from the default package are no longer allowed

  • Getting error message that states itunesexe has been set to run in compatibilty mode for an older versions of windows for best results turn off compatibility mode for itunes before you open it .How do i turn off compatibility mode?

    recieved error message that states" itunes exe has been set to run in compatibility mode for an older versions of windows for best results turn off compatibility mode for itunes before you open it. How do i access compatibility mode and turn it off ? Believe i have Windows 7.

    Try the following document, only be sure that none of the boxes in the compatibility tab are checked (not just the compatibility mode box itself): 
    iTunes for Windows: How to turn off Compatibility Mode

  • Error :"The provider is not compatible with the version of Oracle client"

    Hi guys!
    I'm facing this problem:
    When my .Net application tries to access the DB, I get this error message above.
    The application is into the same machine of DB and the operational system is Windows Server Enterprise 64 bits.
    I'm comparing to another machine that has the same scenario but runs in Windows Vista 64 bits. This problem doesn't happen and I can normally access the DB.
    The both database versions are 10g Release 2 (10.2) and all components from Oracle Database Components 10.2.0.2.21 are installed as the containing bellow:
    -Oracle Data Provider for .NET 1.x 10.2.0.2.20
    -Oracle Data Provider for .NET 2.0 10.2.0.2.20
    -Oracle Developer Tools for Visual Studio .NET 2003 10.2.0.2.20
    -Oracle Developer Tools for Visual Studio 2005 10.2.0.2.20
    -Oracle Provider for OLE DB 10.2.0.2.20
    -Oracle Objects for OLE 10.2.0.2.20
    -Oracle Services For Microsoft Transaction Server 10.2.0.1.0
    -Oracle Net 10.2.0.1.0
    -Oracle Universal Installer 10.2.0.2.0
    Oracle.DataAcces.DLL is 2.102.2.20 and it is reference in my .Net app (that is published and located into IIS).
    These are the Oracle assemblies installes in 'C:\Windows\Assembly':
    Windows Vista Machine:
    ASSEMBLY NAME VERSION CULTURE PUBLIC KEY TOKEN PROCESS ARCHITECTURE
    Oracle.DataAccess 10.2.0.100 Neutral 89b483f429c47342
    Oracle.DataAccess 1.102.2.20 Neutral 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 pt-BR 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 it 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 fr 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 es 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 de 89b483f429c47342
    Oracle.Management.Omo 2.102.2.20 Neutral 89b483f429c47342 x86
    Oracle.VsDevTools 2.102.2.20 Neutral 89b483f429c47342 x86
    Policy.10.1.Oracle.DataAccess 1.102.2.20 Neutral 89b483f429c47342
    Policy.10.2.Oracle.DataAccess 1.102.2.20 Neutral 89b483f429c47342
    Windows Server Machine:
    ASSEMBLY NAME VERSION CULTURE PUBLIC KEY TOKEN PROCESS ARCHITECTURE
    Oracle.DataAccess 10.2.0.100 Neutral 89b483f429c47342
    Oracle.DataAccess 1.102.2.20 Neutral 89b483f429c47342
    Oracle.DataAccess 2.102.2.20 Neutral 89b483f429c47342 x86
    Oracle.DataAccess.resources 10.2.0.100 pt-BR 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 zh-CHT 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 zh-CHS 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 ko 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 jp 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 it 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 fr 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 es 89b483f429c47342
    Oracle.DataAccess.resources 10.2.0.100 de 89b483f429c47342
    Policy.10.1.Oracle.DataAccess 1.102.2.20 Neutral 89b483f429c47342
    Policy.10.2.Oracle.DataAccess 1.102.2.20 Neutral 89b483f429c47342
    Policy.9.2.Oracle.DataAccess 10.2.0.100 Neutral 89b483f429c47342
    Policy.9.2.Oracle.DataAccess 1.102.2.20 Neutral 89b483f429c47342
    What should I check and do to solve this problems?
    Thanks for help,
    Anderson

    Hi,
    Often the error "The provider is not compatible with the version of Oracle client" is raised when the unmanaged dll OraOpsX.dll can't be found, can't be loaded, or is the wrong version. For version 10.2.0.x of ODP.NET and .NET Framework 2.x the file should be called "OraOps10w.dll" and should be found in the %ORACLE_HOME%\bin directory.
    Since the ODAC pieces are installed on the same host as the database, are they in a separate Oracle Home or the same Oracle Home as the database software? If there are multiple Oracle Home directories, which one is in the system path first?
    I would start with verifying the version of OraOps10w.dll and the system path on the server. You might also confirm that the Oracle Home directory (and everything under it) has the following permissions for Authenticated Users:
    - Read & Execute
    - List folder contents
    - Read
    Regards,
    Mark

  • When my lightroom opens up I keep getting an error message that states, "Lightroom encountered an error whne reading from its preview  cache and needs to quit" I have relaunched it a number of times and keep getting the same message.

    when my lightroom opens up I keep getting an error message that states, "Lightroom encountered an error whne reading from its preview  cache and needs to quit" I have relaunched it a number of times and keep getting the same message. Any thoughts on how to fix this?

    You need to delete your preview cache and have Lightroom rebuild it.   Cache location can be found here.
    https://helpx.adobe.com/lightroom/kb/preference-file-locations-lightroom-41.html
    Why And How To Clear Your Lightroom Cache - Lightroom Fanatic

  • Error in if statement

    i am writing a stored procedure in which i have made use of if statement my requirement is that in the if statement if a
    certain record exists then go inside the if condition otherwise else condition i am getting error
    my SQL Statement is this
    create or replace
    PROCEDURE usp_addAppointment_Mst
    parameter list
    AS
    pAppdetailsid number(10,0);
    v_Appcode varchar(10);
    begin
         if exists(Select * from dr_slots Where SlotId = pSlotId and MaximumPatient = AllocatedPatient )then
    Select v_AppDetailsId from dual;
         return ; -- this is my return statement
    else
    Select NVL(max(AppId),0) + 1 into v_Appid From Appointment_Mst;
    v_Appcode := 'APP' || cast(*v_Appid* as varchar(5)); -error in this line
    /*some code*/
         Select AppDetailsId from Appointment_Dtls where AppDetailsId=pAppdetailsid;
    end if;
    end;
    what i am doing is that if statement mentioned above becomes TRUE then execute select statement and return
    from there otherwise it goes inside else statement and perform some operation which is there inside the transaction
    and then select some value which actually the last statement in else block this is my actual requirement
    while executing i am getting this error
    Error(71,58): PLS-00103: Encountered the symbol "(" when expecting one of the following:     . ) @ %
    Edited by: user21354 on Feb 21, 2011 1:05 AM
    Edited by: user21354 on Feb 21, 2011 1:08 AM

    What is this line doing in there?
    variable declaration That's not valid PL/SQL code.
    Please also consider posting your code using {noformat}{noformat} tags as desribed in the SQL and PL/SQL FAQ: SQL and PL/SQL FAQ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • I just downloaded itunes onto my new laptop and I am trying to burn songs onto a cd that I had purchased previously and I am getting an error message that states I must authorize this computer. What does that mean?

    I just downloaded itunes onto my new laptop and I am trying to burn songs onto a cd that I had purchased previously and I am getting an error message that states I must authorize this computer. What does that mean?

    If the computer's running Mac OS X, move the cursor to the very top of the computer's screen, click on Store, and choose Authorize this Computer.
    If the computer's running Windows, press the Alt and S keys and choose Authorize this Computer, or click here, follow the instructions, click on Store in the menu bar, and choose Authorize this Computer.
    (95452)

  • Error while saving state in 'client' , in ADF faces application

    Thank you for reading my post
    I have an ADF faces application and i get this error and my application does not function correctly , does any one has an idea ?
    thanks
    06/10/17 17:34:38.15 10.1.3.1.0 Started
    06/10/17 17:34:55.546 web2: 10.1.3.1.0 Started
    06/10/17 17:45:49.531 web2: Servlet error
    java.lang.NullPointerException
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
         at oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    06/10/17 17:46:02.703 web2: Servlet error
    javax.servlet.jsp.JspException: Error while saving state in 'client': 'An established connection was aborted by the software in your host machine'.
         at com.sun.faces.taglib.jsf_core.ViewTag.doAfterBody(ViewTag.java:206)
         at _index._jspService(_index.java:473)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.1.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:287)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:50)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
         at oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:167)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:619)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)

    StateManagerImpl.saveSerializedView tries to let UIViewRoot be a session
    attribute and the error message says it should be serializable; certainly it' not.
    I think HttpSession.setAttribute does not claim the object should be serializable.
    I don't know why apache's StandardSession.setAttribute claims so.

Maybe you are looking for

  • Transfering data from one account to another

    I just discovered that the user files from the second account on my iMac g5 have somehow transfered into the trash of my first account( which is my main one).I was getting in the second account the following dropdown message- " the home folder is not

  • Error message after iTunes upgrade

    The error message reads: "The attempt to burn the disc failed. The device failed to calibrate the laser power level for this media." What does this mean? I am using the same discs as I always have. I just installed the latest upgrade. version 6.0.5 i

  • Cimparison beetwen preview for developer & origina...

    What is draw backs of window 8.1 update preview for developer. Which fetures thye are not giving in previe update. Whay they are not officialy relising 8.1 update. Up to what time they will release it???

  • Current date & time in text field

    I need to auto-fill a text field with four letters plus the current date and current time. The text field should populate when the user clicks a checkbox. For example, if today is April 25, 2012 and the current time is 10:27 a.m., the text field shou

  • WSDL ACL update is controled by?...What's causing the timeout?

    I am doing some small tests. - drop localhost.xml - register localhost (allow all *) - check wsdl call ("OK") - drop localhost.xml - register localhost (disallow via for instance 192.* --> server / network is in 10.* domain) - check wsdl call ("Not O