Strange issue when running sql with false condition

Hi,
I'm running this query from the application:
select 22
from DUAL
where ( to_number(0) <> 0 ) and exists (
select 'X'
from TABULA.macdent$FNCITEMS
where ( macdent$FNCITEMS.QIV = to_number(0) ) );
And it takes a long time because it is checking the second condition.
Even though the first one is False.
When running it through sqlplus it takes nothing. and of course no rows returns.
The 0 in to_number is a bind variable
it looks like this:
select :intvar
from DUAL
where ( to_number(:QIV$) <> 0 ) and exists ( select 'X'
from TABULA.macdent$FNCITEMS
where ( macdent$FNCITEMS.QIV = to_number(:QIV$) ) )
1 - filter predicate: ( IS NOT NULL AND 0<>TO_NUMBER(TO_CHAR(:QIV$)))
But in sqlplus the filter predicates is different.
1 - filter(NULL IS NOT NULL AND EXISTS (SELECT 0 FROM "TABULA"."MACDENT$FNCITEMS" "MACDENT$FNCITEMS" WHERE
SQL> select 22
from DUAL
where ( to_number(0) <> 0 ) and exists (
select 'X'
from TABULA.macdent$FNCITEMS
where ( macdent$FNCITEMS.QIV = to_number(0) ) );
2 3 4 5 6
no rows selected
Elapsed: 00:00:00.00
Execution Plan
Plan hash value: 883410849
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)|
Time | TQ |IN-OUT| PQ Distrib |
| 0 | SELECT STATEMENT | | 1 | | 0 (0)| | | | |
|* 1 | FILTER | | | | | | | | |
| 2 | FAST DUAL | | 1 | | 2 (0)|00:00:01 | | | |
| 3 | PX COORDINATOR | | | | | | | | |
| 4 | PX SEND QC (RANDOM)| :TQ10000 | 63M| 782M| 2 (0)|00:00:01 | Q1,00 | P->S | QC (RAND) |
| 5 | PX BLOCK ITERATOR | | 63M| 782M| 2 (0)|00:00:01 | Q1,00 | PCWC | |
|* 6 | TABLE ACCESS FULL| MACDENT$FNCITEMS | 63M| 782M| 2 (0)|00:00:01 | Q1,00 | PCWP | |
Predicate Information (identified by operation id):
1 - filter(NULL IS NOT NULL AND EXISTS (SELECT 0 FROM "TABULA"."MACDENT$FNCITEMS" "MACDENT$FNCITEMS" WHERE
"MACDENT$FNCITEMS"."QIV"=0))
6 - filter("MACDENT$FNCITEMS"."QIV"=0)
ANY SUGGESTIONS?
Thanks,

912294 wrote:
Hi,
I'm running this query from the application:
select 22
from DUAL
where ( to_number(0) <> 0 ) and exists (
select 'X'
from TABULA.macdent$FNCITEMS
where ( macdent$FNCITEMS.QIV = to_number(0) ) );
Why are you using "to_number(0)"? the zero is already seen by oracle as a number.
The to_number function expects to get a character string as the argument: to_number('0')
See the difference?
As you currently have it coded, you are forcing oracle to do an implicit conversion of the number zero to the character string '0' in order to pass it to to_number to convert it back to the number zero.
And what is the point of "where to_number(0) <> 0"
When would that EVER be true?
And it takes a long time because it is checking the second condition.
Even though the first one is False.
When running it through sqlplus it takes nothing. and of course no rows returns.
The 0 in to_number is a bind variable
it looks like this:
select :intvar
from DUAL
where ( to_number(:QIV$) <> 0 ) and exists ( select 'X'
from TABULA.macdent$FNCITEMS
where ( macdent$FNCITEMS.QIV = to_number(:QIV$) ) )
So the query you showed at the top is not the query we are really dealing with. What is the data type of QIV$? At least now we know that comparison to zero is not a fixed value.
1 - filter predicate: ( IS NOT NULL AND 0<>TO_NUMBER(TO_CHAR(:QIV$)))
This suggests QIV$ is already a number, else why would you pass it to to_char? And as I said above, if it is already a number, why pass it to to_number? Here you appear to be explicitly doing what I described oracle as implicitly doing in your first query above.
But in sqlplus the filter predicates is different.
1 - filter(NULL IS NOT NULL AND EXISTS (SELECT 0 FROM "TABULA"."MACDENT$FNCITEMS" "MACDENT$FNCITEMS" WHERE
SQL> select 22
from DUAL
where ( to_number(0) <> 0 ) and exists (
select 'X'
from TABULA.macdent$FNCITEMS
where ( macdent$FNCITEMS.QIV = to_number(0) ) );
2 3 4 5 6
no rows selected
Elapsed: 00:00:00.00
Execution Plan
Plan hash value: 883410849
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)|
Time | TQ |IN-OUT| PQ Distrib |
| 0 | SELECT STATEMENT | | 1 | | 0 (0)| | | | |
|* 1 | FILTER | | | | | | | | |
| 2 | FAST DUAL | | 1 | | 2 (0)|00:00:01 | | | |
| 3 | PX COORDINATOR | | | | | | | | |
| 4 | PX SEND QC (RANDOM)| :TQ10000 | 63M| 782M| 2 (0)|00:00:01 | Q1,00 | P->S | QC (RAND) |
| 5 | PX BLOCK ITERATOR | | 63M| 782M| 2 (0)|00:00:01 | Q1,00 | PCWC | |
|* 6 | TABLE ACCESS FULL| MACDENT$FNCITEMS | 63M| 782M| 2 (0)|00:00:01 | Q1,00 | PCWP | |
Predicate Information (identified by operation id):
1 - filter(NULL IS NOT NULL AND EXISTS (SELECT 0 FROM "TABULA"."MACDENT$FNCITEMS" "MACDENT$FNCITEMS" WHERE
"MACDENT$FNCITEMS"."QIV"=0))
6 - filter("MACDENT$FNCITEMS"."QIV"=0)
ANY SUGGESTIONS?
Thanks,

Similar Messages

  • Issue when Run Report with  Hier selection   in the Portal

    Hi  Portal  BI Experts,
    we are finding a strange issue  when Running the Report.
    the following  Variables are in the  Report  Selection screen :
    Company code [optiona]
    Prod.Variance Type [ mandatory]
    Hierarchy Node Variable [optional]
    TheQuery  which I am Running  thro Bex Analyzer  with  the Hier  selection as below , is working  fine. But
    When I  run   thro portal with Hier selection value   with    00/50/G310/702258(0CUST_SALES
    It automatically  display as +00/50/G310/702258(0CUST_SALES    with + symbol. and  thro the error:
    Input "\+00/50/G310/702258(0CUST_SALES);\+00/51/G410/703096(0CUST_SALES)" for Ship-To Party (Sales has invalid format
    If I remove the plus symbol  report runnig fine.
    Your  immediate help highly appreciated.
    Thanks
    Hema
    Edited by: hemav on Mar 21, 2011 2:29 PM

    Hi Jaya,
    This is the Error message  I am facing when I Execute ithe query  report n the Web[Portal]
    Input "\+00/50/G310/702258(0CUST_SALES);\+00/51/G410/703096(0CUST_SALES)" for Ship-To Party (Sales has invalid format
    ie. In the variable screen the selected hier value  automaticvally display with plus symbol
    Actual   Hier  value :   00/50/G310/702258(0CUST_SALES)
    Once close the Hier  selection list window , the Hier value  turned to  +00/50/G310/702258(0CUST_SALES)
    If I give ok with this Plus symbol  it throwing the above error.  By  removing the Plus symbol manually  it is working fine.
    I unable locate the  settings.
    that too when I run the same report  in Bex Analyzer  woking fine , no issues in the Hier  value.
    Thanks ,
    Hema

  • Insufficient privilege when run SQL in PL/SQL Developer

    Hi,
    My developer had strange behavior when run below SQL from PL/SQL Developer. It will come out with "*Insufficient Privileges*" message.
    SELECT Fiscal
    FROM pmaps_fiscalweekonly
    WHERE intend >= trunc(sysdate)
    AND rownum < 5
    ORDER BY intend ASC;
    Same SQL run without any problem in SQLPLUS and SQL Developer.
    But if we use small asc instead capital ASC, it run without problem also in PL/SQL Developer.
    SELECT Fiscal
    FROM pmaps_fiscalweekonly
    WHERE intend >= trunc(sysdate)
    AND rownum < 5
    ORDER BY intend asc;
    Kindly check if someone have any idea.
    ZlT

    zhilongtan wrote:
    But the privilege problem only happened when capital ASC keyword was used in ORDER BY clause. If small asc keyword was used, it run without problem.
    It seems to me, it does not relate with privilege or role grant. Please advise. Thanks.
    ZlT.I think you should sk this question in a support forum for PL/SQL Developer. The possible bug seems directly connected to this tool. If I remember rightly then this tool is from ALLAutomations. You should ask them. THis forum would be the wrong place to ask.
    Edited by: Sven W. on Aug 30, 2010 5:24 PM

  • Issue when running acutal Off-cycle payroll in India!

    Dear experts!
    I have an urgent issue when running ACTUAL off-cycle payroll in India as below: "Payroll already performed once in future".
    In testing mode, everything is fine. I have tried to check payroll result in pc_payresult and pu01, and Infotype 3. All of them show the last payroll in 31.07.2011. But now I run off-cycle payroll on 20.08.2011, this error is displayed. So I cannot run actual payroll for them.
    Please help me! I am really appreciated.
    Regards!
    Woody.

    Hello
    Normally this error message reflects an inconsistency in the payroll
    directory cluster, that you can view via RPUDIR00. What you can do to
    restore the consistency is to run the report RPUDIR00 for this pernr
    with the following parameters on the selection screen:
    Payroll for country                           
    Personnel number             
    Compare directory            
    Payroll results structure   
    detailed log                
    Save new directory             X          <  this will write the new directory.  If you want to test first, do not select this parameter.
    Afterwards it should be possible to run payroll for this employee.
    Thanks and Kind Regards
    Ramana

  • Strange issue when scaling text

    Hi,
    I'm using inDesign CS6 and there's a strange issue when rescaling a text with overflow to 200%:
    As you can see, the fourth paragraph doesn't change its font size, even if it has exactly the same configuration. This happens apparently randomly to some paragraphs, or even lines of a paragraph in some cases.
    The weirdest thing is that I have tried the same action with the same .indd file in other computers (another Mac and a Windows one, both CS6) and it scales properly all paragraphs. So I checked all the preferences from one computer to the other, and even if they are the same, the scaling issue still happens.
    Any hints?

    See Replace Your Preferences

  • Strange issue when pausing LONG audiobook--pressing play again changes the

    Strange issue when pausing LONG audiobook--pressing play again changes the position within the book--it doesn't start back exactly where it left off.
    The audiobook of "Harry Potter and the Half Blood Prince" is between 18 and 19 HOURS long--all as one long track/file.
    I've noticed that when I pause while listening and then press play again, it "rewinds" and starts playing portions of the audiobook from about 10 minutes prior--but the time stamp doesn't change. At least this is the time frame from the first "test". Other pauses/plays may result in different time differences.
    The first time this happened, I didn't realize what it was doing. I pressed play (from the pause) and I heard a portion that I had already played. I thought that the bookmark just didn't "remember" as it should have, so I scrubbed forward trying to find where I remembered leaving off. If you end up pausing/playing even a couple of times with this happening each time, the portion of the audiobook that you're playing and the time stamp becomes COMPLETELY off! For example, almost an hour into the time stamp was really only about 10-15 minutes into the actual book.
    I'm not sure if this makes any sense, but hopefully it does to someone. It's very frustrating to have this happen simply because you had to pause while listening. You have to scrub backwards or forwards each time to find out where you REALLY left off at and the time stamp becomes of no help value since it doesn't change as the playback position moves itself.
    I'm sure that this is something happening due to the extreme length of the audio file. That maybe it can't track as precisely as it could with shorter lengths. ???
    Any ideas? Has anyone else seen this happen? Any ideas on whether or not there is anything that can be done to prevent this?

    I'm glad that I'm not the only one having this
    problem. It's ironic that we're both having issues
    with the SAME audiobook. I haven't had a chance to
    listen to Books 1-5 much to see if they have the same
    issue or not--I don't remember any on the few parts
    that I've played for my nephews.
    Yeah, I know! I was shocked to see that. I recently finished HP5 (twice), and NEVER had this issue, but it is a much smaller file size.
    I'm thinking that I may try to convert to AAC before
    I try the splitting program--in theory, it's easier
    to start right back in again when you only have 1
    track to find, than when you have dozens/hundreds of
    smaller tracks. It's sometimes hard to remember
    which track you left off with--even if it's
    "bookmarked" within that track.
    I dunno anything about AAC, to be honest. Never used it. My plan is to split the MP3 into smaller MP3s by chapter and load them on a playlist. Of course, I will have to label them all nice and pretty. It is a long book, but you could always just load a couple of chapter files at a time. The only thing that I can see that would be kind of a pain about splitting it with the Cool MP3 is searching thru the file for each chapter and setting break points.
    My only concern is how much quality I'm losing by
    converting from one compressed format--MP3--to
    another compressed format AAC.
    Yeah. Ew. No clue. Sounds unpleasant to me. Again, I really do not do anything with AAC.
    I suppose, since it's
    spoken word instead of music, the change shouldn't be
    too noticable. I'm not sure what kind of time frame
    it'll require to convert. I'll probably try it with
    book 1 first--since it's the smallest.
    May depend on the program. The one I got boasts no quality loss. You may wanna scrounge around the download sites and see which one sounds like it has the best features, even if you do just get a free trial version of something. I would definitely read the editor's ratings. I tend to trust that more than the typical end user's. They show how many stars the editor gives a product, and you can click that for the review, or sometimes they have labeled tabs where you can access the review.
    As for how long it takes me to rip that particular file and if that actually fixes the scrubbing problem, I will have to let you know tomorrow. WAAAAY past my bedtime!
    Keep me updated on your end. I sure which that there
    was an explanation for why it happens.
    Will do! I am thinking you hit the nail on the head with the length. That was exactly what popped into my mind when I figured out what the goofy thing was doing.
    Talk to you later!
    HP dv5117d, iTunes 7.0.2.16   Windows XP Pro   1st gen 4GB nano, sw ver 1.3

  • If..then..else statement in SQL with 'generalized' conditions in the if sta

    it is possible to write something approaching an if..then..else statement in SQL with 'generalized' conditions in the if statement.
    Attached is the query for the payment register, in which I've written a series of decode statements, one for each possible value of the payment code. The query works OK - however, its specific and as the number of paycodes expand (and they do), the report won't pick up the new paycode until the code is changed. More importantly, the report won't be correct until someone 'discovers' that a paycode is missing, which might take months.
    If I were writing the equivalent of this series of decode statements in Focus, it would be something like this:
    DEFINE.......
    PAYMED/D12.2 = IF PAYMENT_CD LE 18
                   THEN PAYMENT_AMT
                   ELSE 0 ;
    PAYIND/D12.2 = IF PAYMENT_CD GE 19 AND PAYMENT_CD LE 49
                   THEN PAYMENT_AMT
                   ELSE 0 ;
    PAYEXP/D12.2 = IF PAYMENT_CD GE 70
                   THEN PAYMENT_AMT
                   ELSE 0 ;
    PAYREC/D12.2 = IF PAYMENT_CD GE 50 AND PAYMENT_CD LE 69
                   THEN PAYMENT_AMT
                   ELSE 0;
    END
    IN SQL/PLUS:
    SELECT ACCOUNT_NAME,
    LOCATION_1,
    CLMNT_LAST_NAME,
    CLAIM_NBR,
    DATE_OF_INJURY,
    DATE_CHECK_REGISTER,
    PAYEE_NAME_1,
    PAYMENT_CD,
    SERV_OFC,
    CPO_CHECK_NBR,
    PAYMENT_FORM,
    DECODE(PAYMENT_CD, 20, PAYMENT_AMT, 21, PAYMENT_AMT,
    22, PAYMENT_AMT, 23, PAYMENT_AMT, 25, PAYMENT_AMT,
    26, PAYMENT_AMT, 27, PAYMENT_AMT, 28, PAYMENT_AMT,
    29, PAYMENT_AMT, 30, PAYMENT_AMT, 31, PAYMENT_AMT,
    32, PAYMENT_AMT, 33, PAYMENT_AMT, 34, PAYMENT_AMT,
    35, PAYMENT_AMT, 36, PAYMENT_AMT, 37, PAYMENT_AMT,
    39, PAYMENT_AMT, 40, PAYMENT_AMT, 41, PAYMENT_AMT,
    42, PAYMENT_AMT, 43, PAYMENT_AMT, 44, PAYMENT_AMT,
    45, PAYMENT_AMT, 46, PAYMENT_AMT, 47, PAYMENT_AMT,
    48, PAYMENT_AMT, 49, PAYMENT_AMT, NULL) INDEMNITY,
    DECODE(PAYMENT_CD, 0, PAYMENT_AMT, 1, PAYMENT_AMT,
    2, PAYMENT_AMT, 3, PAYMENT_AMT, 4, PAYMENT_AMT,
    5, PAYMENT_AMT, 6, PAYMENT_AMT, 7, PAYMENT_AMT,
    8, PAYMENT_AMT, 9, PAYMENT_AMT, 10, PAYMENT_AMT,
    11, PAYMENT_AMT, 12, PAYMENT_AMT, 13, PAYMENT_AMT,
    14, PAYMENT_AMT, 15, PAYMENT_AMT, 18, PAYMENT_AMT,
    17, PAYMENT_AMT, NULL) MEDICAL,
    DECODE(PAYMENT_CD, 70, PAYMENT_AMT, 71, PAYMENT_AMT,
    72, PAYMENT_AMT, 73, PAYMENT_AMT, 74, PAYMENT_AMT,
    75, PAYMENT_AMT, 76, PAYMENT_AMT, 77, PAYMENT_AMT,
    78, PAYMENT_AMT, 79, PAYMENT_AMT, 80, PAYMENT_AMT,
    81, PAYMENT_AMT, 82, PAYMENT_AMT, 83, PAYMENT_AMT,
    84, PAYMENT_AMT, 85, PAYMENT_AMT, 86, PAYMENT_AMT,
    87, PAYMENT_AMT, 88, PAYMENT_AMT, 89, PAYMENT_AMT,
    90, PAYMENT_AMT, NULL) EXPENSES,
    DECODE(PAYMENT_CD, 50, PAYMENT_AMT, 51, PAYMENT_AMT,
    52, PAYMENT_AMT, 53, PAYMENT_AMT, 54, PAYMENT_AMT,
    55, PAYMENT_AMT, 56, PAYMENT_AMT, 57, PAYMENT_AMT,
    58, PAYMENT_AMT, NULL) RECOVERIES,
    DECODE(PAYMENT_FORM, 'N', PAYMENT_AMT, NULL) NONCASH,
    DATE_FROM_SERVICE,
    DATE_THRU_SERVICE
    FROM &INPUT_TABLES
    WHERE &SECURITYCOND
    DATE_OF_PAYMENT BETWEEN :START_DATE AND :END_DATE
    ORDER BY LOCATION_1, CPO_CHECK_NBR
    As you can see, this is both much easier to write and covers the possibility of expansion of paycodes (expansions always fit in these defined ranges).
    My question is, then, is it possible to write something like this in SQL and, if so, could you give me some sample code? (I'm one of those people who learn best from looking at the code as opposed to a set of instructions)

    Here is one way you could do it.
    Create a table that has columns like:
    Payment_code varchar2(2),
    Effective_Date Date,
    Payment_type varchar2(20),
    Expiration_Date Date)
    Payment type for example could be
    I- indemnity
    M- medical
    R- recovery
    E- expenses
    Let the table name for example be PAYMENT_CODE.
    The select query would look like
    SELECT ACCOUNT_NAME,
    LOCATION_1,
    CLMNT_LAST_NAME,
    CLAIM_NBR,
    DATE_OF_INJURY,
    DATE_CHECK_REGISTER,
    PAYEE_NAME_1,
    PAYMENT_CD,
    SERV_OFC,
    CPO_CHECK_NBR,
    PAYMENT_FORM,
    DECODE(p.payment_type,'E',PAYMENT_AMOUNT,0) expenses,
    DECODE(p.payment_type,'I',PAYMENT_AMOUNT,0) indemnity,
    DECODE(p.payment_type,'M',PAYMENT_AMOUNT,0) Medical,
    DECODE(p.payment_type,'R',PAYMENT_AMOUNT,0) recoveries,
    DECODE(PAYMENT_FORM, 'N', PAYMENT_AMT, NULL) NONCASH
    FROM &INPUT_TABLES,
    PAYMENT_CODE P
    WHERE P.PAYMENT_CODE = SOMEINPUT_TABLE.PAYMENT_CODE
    and other conditions
    The idea is to group all the payment codes into a few groups to reduce the clutter. If there is ever a change to the payment code, you could modify the table and it will be reflected in your select query.

  • ORA-04062 error when running forms with different users

    ORA-04062 error when running forms with different users
    I have a form that has a block that should display some data from another users tables. (The other user's name is dynamic, it's selected from a list box)
    I wrote a stored procedure to get the data from other user's tables.
    When I compile the form and run it with the same user I compiled, it works without any error. But when I run the compiled form with another user I get the ORA-04062 (signature of procedure has been changed) error.
    I tried setting REMOTE_DEPENDENCIES_MODE to SIGNATURE in init.ora but it didn't help.
    My Forms version is 6i with Patch 15.
    Database version is 9.
    Here is my stored procedure:
    TYPE Scenario_Tab IS TABLE OF NUMBER(34) INDEX BY BINARY INTEGER;
    TYPE Open_Curs IS REF CURSOR;
    PROCEDURE Get_Scenarios(User_Name IN VARCHAR2, Scen_Table OUT Scenario_Tab) IS
    Curs Open_Curs;
    i NUMBER;
    BEGIN
    OPEN Curs FOR
    'SELECT Seq_No FROM '|| User_Name ||'.scenario';
    i := 1;
    LOOP
    FETCH Curs INTO Scen_Table(i);
    EXIT WHEN Curs%NOTFOUND;
    i := i + 1;
    END LOOP;
    END Get_Senarios;
    I would be happy to solve this problem. It's really important.
    Maybe somebody can tell me another way to do what I want to do. (getting a list of values from another users tables)

    I think it should be a better solution to create a package,
    and put your own TYPES and procedure into it.
    CREATE OR REPLACE PACKAGE PKG_XXX IS
    TYPE TYP_TAB_CHAR IS TABLE OF .... ;
    PROCEDURE P_XX ( Var1 IN VARCHAR2, var2 IN OUT TYP_TAB_CHAR );
    END ;
    Then in your Form :
    Declare
    var PKG_XXX.TYP_TAB_CHAR ;
    Begin
    PKG_XXX.P_XX( 'user_name', var ) ;
    End ;

  • Ora-3113 when running sql in sqlplus mts. dedicated works fine

    when i try to execute a simple query (return 1 row), from sqlplus (in the server database) by shared connection, i recive ora-3113. by dedicated conection it works fine. environment datas : server side (windows 2003 server; 10.2.0.1).
    part of my trace file :
    nsprecv: normal exit
    nsrdr: got NSPTDA packet
    nsrdr: NSPTDA flags: 0x40
    nsrdr: normal exit
    nsdo: entry
    nsdo: cid=0, opcode=85, bl=2001, what=0, uflgs=0x0, cflgs=0x1
    nsdo: nsctx: state=6, flg=0x620d, mvd=0
    nsdo: gtn=127, gtc=127, ptn=10, ptc=2011
    nserror: entry
    nsdo: error exit
    nsdo: nsctxrnk=0
    nsdo: error exit
    nioqer: entry
    nioqer: incoming err = 12151
    nioqce: entry
    nioqce: exit
    nioqer: returning err = 3113
    nioqer: exit
    nioqrc: exit
    nioqbr: entry
    nioqbr: state = normal (0)
    nioqsm: entry
    nioqsm: Sending break packet (1)...
    nsdo: entry
    nsdo: cid=0, opcode=67, bl=1, what=17, uflgs=0x100, cflgs=0x3
    nsdo: rank=64, nsctxrnk=0
    nsdo: nsctx: state=3, flg=0x420d, mvd=0
    nsdo: nsctxrnk=0
    nsdo: error exit
    nioqsm: send-break: failed to send break...
    nioqper: error from send-marker
    nioqper: nr err code: 0
    nioqper: ns main err code: 12583
    nioqper: ns (2) err code: 0
    nioqper: nt main err code: 0
    nioqper: nt (2) err code: 0
    nioqper: nt OS err code: 0
    nioqsm: exit
    nioqer: entry
    nioqer: incoming err = 12152
    nioqce: entry
    nioqce: exit
    nioqer: returning err = 3113
    nioqer: exit
    nioqbr: returning 3113
    nioqbr: exit
    nioqds: entry
    nioqds: disconnecting...
    thanks

    Thread continued at -->
    ora-3113 when running sql in sqlplus mts. dedicated works fine

  • Unable to interact with Flash content when running Firefox with restricted user

    When running Firefox with limited Windows user on Windows XP the Flash elements are displayed, the content that is set to auto-play does so even, but the flash area doesn't receive any mouse input: e.g. when I right click in the area instead of the flash context menu I get the browser context menu as if the flash plug-in wasn't even there. The exact same page on the exact same computer but with Administrator user works as expected: can press buttons, interact with flash controls and the context menu upon right-click is of course the flash one. This behavior occurs even if I disable all add-ons.

    Try uninstalling your sound card driver in Device Manager and reboot your PC.

  • Screen message when run SQL / PLSQ script

    Hi
    Can anyone tell me how desactivate the message :
    "Entry limited at xx caracters" ("Entree limitee a xx caracteres" in french) when running sql or plsql script ?
    Thanks
    it's like this:
    EntrÚe limitÚe Ó 17 caractÞres

    I suppose you are talking about the message
    "Input truncated to (number) characters."
    This is caused by not having a carriage return at the end of the line.

  • Strange audio issue when running render queue via script.

    The issue I'm having with AE is odd, and I'm hoping someone may be able to shed light on the matter.  I have a very simple composition that, when I render out using the GUI, everything works as expected.  The video renders fine, the audio renders fine, etc.  However, when I invoke a script that runs the .aep file, sets the render queue for the composition in question, and then renders it, only the video comes through, but no audio.  There is nothing in my script prior to the setting up of the render queue that alters any audio layers (i.e. no code shutting off audio, etc.)  Has anybody ever encountered this?  The audio file is a .wav in 44.1KHz, 16bit, stereo, and will try other formats to see if the problem might with the file itself?  Although, I don't see how that would be the case if it is rendering just fine via the GUI.
    Any help you can offer for troubleshooting would be great!  Thanks for your help and time!

    Thanks for your suggestion.  It wasn't the output module.  I created a custom template for it and ensured the audio was checked.  It was an odd fix.  I deleted the audio layer, then dragged it back to the timline.  Then, it worked.  Cost me like two hours of work for that, and I should have checked it earlier.  But I still don't know why the original wasn't working.

  • Performance Issues when running 1.5.0_9 with servers

    Hi. We have an application in Java. We run it using 1.5.0_9 on Win2003 and have no problems when running it on single Intel CPU PCs and Servers. However, whenever we are finding that some higher spec servers are running the application significantly slower... around 30%. It seems that it's either a problem with the Enterprise version of Win2k3 or perhaps with AMD Opteron CPUs.
    Does anyone know of any known issues with Win2k3 Enterprise or AMD Opteron CPUs or simply any dual CPU technology?
    Thanks
    Edited by: gingerdazza on Jul 2, 2008 1:21 AM

    I'm able to recreate the problem where a section of a screen goes black using with the following config.
    JDK 1.7.0_06
    2 graphics cards
    3 monitors
    Create a New JavaFX Application Project (Hello World) in NetBeans 7.2. Once executed position the window so it spans two monitors, ensure the monitors are on seperate graphics cards and then hover the mouse of the Hello World button and one half of the window goes black. Positioning the window so it doesn't span a monitor draws the window correctly.
    Has anyone experienced this issue?
    Thanks.

  • 1.5 sometimes freezes when running statements with F9

    I had noticed occasional freezes when hitting F9 with 1.5.0 production (ie three or four times last week), but after upgrading to 1.5.1 today (fresh install, migrated preferences) I have had four or five freezes when hitting F9. The UI completely freezes before showing the progress bar and there is no redraw, but it isn't using any CPU (and CPU is 95%+ idle), nothing appears on the console (started using <SQL Dev Install>\sqldeveloper\bin\sqldeveloper.exe) and if I leave it long enough the memory usage drops from 150K+ to back between 1K to 4K (sometimes quickly, sometimes not).
    I am on Win XP SP 2, using SQL Developer 1.5.1.54.40 with JDK 1.6.0_04.
    Initially, I upgraded to 1.5.1 from 1.5.0 as a Check for Updates, but tried the clean install (including renaming preferences directory) after the first freeze.
    Has anyone else seen this? Can someone from the SQL Dev team provide any help? Is there something else I can do to help narrow this down?
    theFurryOne

    Same thing in very similar circumstances - query with bind variables previously executed, freezes on execute without showing bind variable window. Using no appreciable CPU in this state, but after a minute or so memory usage started to increase in 4 or 8K chunks.
    I've also been seeing this intermittently in all builds of 1.5.
    About
    Oracle SQL Developer 1.5.0.53
    Version 1.5.0.53
    Build MAIN-53.38
    Copyright © 2005,2008 Oracle. All Rights Reserved.
    IDE Version: 11.1.1.0.22.49.35
    Product ID: oracle.sqldeveloper
    Product Version: 11.1.1.53.38
    Version
    Component     Version
    =========     =======
    CVS Version (External)     (CVSNT) 2.0.51d (client/server)
    Java(TM) Platform     1.5.0_06
    Oracle IDE     1.5.0.53.38
    Versioning Support     1.5.0.53.38
    Properties
    Name     Value
    ====     =====
    apple.laf.useScreenMenuBar     true
    awt.toolkit     sun.awt.windows.WToolkit
    class.load.environment     oracle.ide.boot.IdeClassLoadEnvironment
    class.load.log.level     CONFIG
    class.transfer     delegate
    com.apple.macos.smallTabs     true
    com.apple.mrj.application.apple.menu.about.name     "SQL_Developer"
    com.apple.mrj.application.growbox.intrudes     false
    file.encoding     Cp1252
    file.encoding.pkg     sun.io
    file.separator     \
    ice.browser.forcegc     false
    ice.pilots.html4.ignoreNonGenericFonts     true
    ice.pilots.html4.tileOptThreshold     0
    ide.AssertTracingDisabled     true
    ide.bootstrap.start     965447299307
    ide.build     MAIN-53.38
    ide.conf     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin\sqldeveloper.conf
    ide.config_pathname     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin\sqldeveloper.conf
    ide.debugbuild     false
    ide.devbuild     false
    ide.extension.search.path     sqldeveloper/extensions:jdev/extensions:ide/extensions
    ide.firstrun     false
    ide.java.minversion     1.5.0
    ide.launcherProcessId     3336
    ide.main.class     oracle.ide.boot.IdeLauncher
    ide.patches.dir     ide/lib/patches
    ide.pref.dir     C:\Documents and Settings\macmilp\Application Data\SQL Developer
    ide.pref.dir.base     C:\Documents and Settings\macmilp\Application Data
    ide.product     oracle.sqldeveloper
    ide.shell.enableFileTypeAssociation     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin\sqldeveloper.exe
    ide.splash.screen     splash.gif
    ide.startingArg0     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin\sqldeveloper.exe
    ide.startingcwd     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin
    ide.user.dir     C:\Documents and Settings\macmilp\Application Data\SQL Developer
    ide.user.dir.var     IDE_USER_DIR
    ide.work.dir     U:\\SQL Developer
    ide.work.dir.base     U:\
    java.awt.graphicsenv     sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob     sun.awt.windows.WPrinterJob
    java.class.path     ..\..\ide\lib\ide-boot.jar;..\..\lib\java\api\jaxb-api.jar;..\..\lib\java\api\jsr173_api.jar;
    ..\..\j2ee\home\lib\activation.jar;..\..\lib\java\shared\sun.jaxb\2.0\jaxb-xjc.jar;
    ..\..\lib\java\shared\sun.jaxb\2.0\jaxb-impl.jar;..\..\lib\java\shared\sun.jaxb\2.0\jaxb1-impl.jar
    java.class.version     49.0
    java.endorsed.dirs     D:\sun\java\jdk1.5.0_06\jre\lib\endorsed
    java.ext.dirs     D:\sun\java\jdk1.5.0_06\jre\lib\ext
    java.home     D:\sun\java\jdk1.5.0_06\jre
    java.io.tmpdir     C:\Temp\
    java.library.path     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin;.;C:\WINDOWS\system32;
    C:\WINDOWS;d:\oracle\tools\dev\9_0_2\jdk\jre\bin\classic;d:\oracle\tools\dev\9_0_2\jlib;
    D:\oracle\tools\dev\9_0_2\bin;d:\oracle\client\10_2_0_1\bin;
    d:\oracle\dbms\xe\10_2_0_1\app\oracle\product\10.2.0\server\bin;d:\merant\pvcs\vm\win32\bin;
    d:\merant\pvcs\vm\common\bin\win32;c:\windows\system32;c:\windows;c:\windows\system32\wbem;
    d:\cvs\cvsnt\2_0;d:\graphviz\2_12\Graphviz\bin;d:\microsoft\windows\xp\tools;
    d:\sun\java\jdk1.5.0_06\bin;d:\ruby\1_8_2\bin;u:\tools\bin;d:\pldoc\0_8_3_1;
    d:\graphviz\2_12\graphviz\bin;v:\tools\bin;d:\sun\java\jdk1.5.0_06\bin; d:\pldoc\0_8_3_1;d:\graphviz\2_12\Graphviz\bin;C:\Program Files\CVSNT\
    java.naming.factory.initial     oracle.javatools.jndi.LocalInitialContextFactory
    java.runtime.name     Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version     1.5.0_06-b05
    java.specification.name     Java Platform API Specification
    java.specification.vendor     Sun Microsystems Inc.
    java.specification.version     1.5
    java.util.logging.config.file     logging.conf
    java.vendor     Sun Microsystems Inc.
    java.vendor.url     http://java.sun.com/
    java.vendor.url.bug     http://java.sun.com/cgi-bin/bugreport.cgi
    java.version     1.5.0_06
    java.vm.info     mixed mode
    java.vm.name     Java HotSpot(TM) Client VM
    java.vm.specification.name     Java Virtual Machine Specification
    java.vm.specification.vendor     Sun Microsystems Inc.
    java.vm.specification.version     1.0
    java.vm.vendor     Sun Microsystems Inc.
    java.vm.version     1.5.0_06-b05
    jdbc.driver.home     /D:/oracle/client/10_2_0_1/
    jdbc.library     /D:/oracle/client/10_2_0_1/jdbc/lib/ojdbc14.jar
    line.separator     \r\n
    oracle.home     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper
    oracle.ide.util.AddinPolicyUtils.OVERRIDE_FLAG     true
    oracle.translated.locales     de,es,fr,it,ja,ko,pt_BR,zh_CN,zh_TW
    oracle.xdkjava.compatibility.version     9.0.4
    orai18n.library     /D:/oracle/client/10_2_0_1/jlib/orai18n.jar
    os.arch     x86
    os.name     Windows XP
    os.version     5.1
    path.separator     ;
    reserved_filenames     con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout,conout$
    sun.arch.data.model     32
    sun.boot.class.path     D:\sun\java\jdk1.5.0_06\jre\lib\rt.jar;D:\sun\java\jdk1.5.0_06\jre\lib\i18n.jar;
    D:\sun\java\jdk1.5.0_06\jre\lib\sunrsasign.jar;D:\sun\java\jdk1.5.0_06\jre\lib\jsse.jar;
    D:\sun\java\jdk1.5.0_06\jre\lib\jce.jar;D:\sun\java\jdk1.5.0_06\jre\lib\charsets.jar;D:\sun\java\jdk1.5.0_06\jre\classes
    sun.boot.library.path     D:\sun\java\jdk1.5.0_06\jre\bin
    sun.cpu.endian     little
    sun.cpu.isalist     pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
    sun.desktop     windows
    sun.io.unicode.encoding     UnicodeLittle
    sun.java2d.ddoffscreen     false
    sun.jnu.encoding     Cp1252
    sun.management.compiler     HotSpot Client Compiler
    sun.os.patch.level     Service Pack 2
    user.country     GB
    user.dir     D:\oracle\tools\sqldev\1_5_0_53_38\sqldeveloper\sqldeveloper\bin
    user.home     C:\Documents and Settings\macmilp
    user.language     en
    user.name     pmacmillan
    user.timezone     Europe/London
    user.variant     
    windows.shell.font.languages     
    Extensions
    Name     Identifier     Version     Status
    ====     ==========     =======     ======
    Check For Updates     oracle.ide.webupdate     11.1.1.0.22.49.35     Loaded
    Code Editor     oracle.ide.ceditor     11.1.1.0.22.49.35     Loaded
    Database Connection Support     oracle.jdeveloper.db.connection     11.1.1.0.22.49.35     Loaded
    Database Object Explorers     oracle.ide.db.explorer     11.1.1.0.22.49.35     Loaded
    Database UI     oracle.ide.db     11.1.1.0.22.49.35     Loaded
    Diff/Merge     oracle.ide.diffmerge     11.1.1.0.22.49.35     Loaded
    Extended IDE Platform     oracle.javacore     11.1.1.0.22.49.35     Loaded
    External Tools     oracle.ide.externaltools     11.1.1.0.22.49.35     Loaded
    Feedback     oracle.ide.feedback     11.1.1.0.22.49.35     Loaded
    File Support     oracle.ide.files     11.1.1.0.22.49.35     Loaded
    File System Navigator     oracle.sqldeveloper.filenavigator     11.1.1.53.38     Loaded
    Help System     oracle.ide.help     11.1.1.0.22.49.35     Loaded
    History Support     oracle.jdeveloper.history     11.1.1.0.22.49.35     Loaded
    Import/Export Support     oracle.ide.importexport     11.1.1.0.22.49.35     Loaded
    Log Window     oracle.ide.log     11.1.1.0.22.49.35     Loaded
    Mac OS X Adapter     oracle.ideimpl.apple     11.1.1.0.22.49.35     Loaded
    Navigator     oracle.ide.navigator     11.1.1.0.22.49.35     Loaded
    Object Gallery     oracle.ide.gallery     11.1.1.0.22.49.35     Loaded
    Object Viewer     oracle.sqldeveloper.oviewer     11.1.1.53.38     Loaded
    Oracle IDE     oracle.ide     11.1.1.0.22.49.35     Loaded
    Oracle Microsoft Access Browser     oracle.sqldeveloper.thirdparty.access     11.1.1.53.38     Loaded
    Oracle Migration Workbench     oracle.sqldeveloper.migration     11.1.1.53.38     Loaded
    Oracle Migration Workbench - MS Access     oracle.sqldeveloper.migration.msaccess     11.1.1.53.38     Loaded
    Oracle Migration Workbench - MySQL     oracle.sqldeveloper.migration.mysql5     11.1.1.53.38     Loaded
    Oracle Migration Workbench - SQLServer     oracle.sqldeveloper.migration.sqlserver2005     11.1.1.53.38     Loaded
    Oracle Migration Workbench - Translation Core     oracle.sqldeveloper.migration.translation.core     11.1.1.53.38     Loaded
    Oracle Migration Workbench - Translation MS Access     oracle.sqldeveloper.migration.translation.msaccess     11.1.1.53.38     Loaded
    Oracle Migration Workbench - Translation MS SQL Server     oracle.sqldeveloper.migration.translation.sqlserver     11.1.1.53.38     Loaded
    Oracle Migration Workbench - Translation MySQL     oracle.sqldeveloper.migration.translation.mysql     11.1.1.53.38     Loaded
    Oracle Migration Workbench - Translation Sybase     oracle.sqldeveloper.migration.translation.sybase     11.1.1.53.38     Loaded
    Oracle Migration Workbench - Translation UI     oracle.sqldeveloper.migration.translation.gui     11.1.1.53.38     Loaded
    Oracle MySQL Browser     oracle.sqldeveloper.thirdparty.mysql     11.1.1.53.38     Loaded
    Oracle SQL Developer     oracle.sqldeveloper     11.1.1.53.38     Loaded
    Oracle SQL Developer Extras     oracle.sqldeveloper.extras     1.1.1.53.38     Loaded
    Oracle SQL Developer Reports     oracle.sqldeveloper.report     11.1.1.53.38     Loaded
    Oracle SQL Developer SearchBar     oracle.sqldeveloper.searchbar     11.1.1.53.38     Loaded
    Oracle SQL Developer TimesTen     oracle.sqldeveloper.timesten     1.5.0.1.1     Loaded
    Oracle SQL Server Browser     oracle.sqldeveloper.thirdparty.sqlserver     11.1.1.53.38     Loaded
    Oracle Sybase Browser     oracle.sqldeveloper.thirdparty.sybase     1.2.1.53.38     Loaded
    Oracle XML Schema Support     oracle.sqldeveloper.xmlschema     11.1.1.53.38     Loaded
    PROBE Debugger     oracle.jdeveloper.db.debug.probe     11.1.1.0.22.49.35     Loaded
    Peek     oracle.ide.peek     1.0     Loaded
    Replace With     oracle.ide.replace     11.1.1.0.22.49.35     Loaded
    Runner     oracle.ide.runner     11.1.1.0.22.49.35     Loaded
    SQL Worksheet Window     oracle.sqldeveloper.sqlworksheet     11.1.1.53.38     Loaded
    Search Bar     oracle.ide.searchbar     11.1.1.0.0     Loaded
    Snippet Window     oracle.sqldeveloper.snippet     11.1.1.53.38     Loaded
    Sybase 12     oracle.sqldeveloper.migration.sybase12     11.1.1.53.38     Loaded
    Sybase 15     oracle.sqldeveloper.migration.sybase15     11.1.1.53.38     Loaded
    Tuning     oracle.sqldeveloper.tuning     11.1.1.53.38     Loaded
    VHV     oracle.ide.vhv     11.1.1.0.22.49.35     Loaded
    Versioning Support     oracle.jdeveloper.vcs     11.1.1.0.22.49.35     Loaded
    Versioning Support for CVS     oracle.jdeveloper.cvs     11.1.1.0.22.49.35     Loaded
    Versioning Support for Subversion     oracle.jdeveloper.subversion     11.1.1.0.22.49.35     Loaded
    Web Browser and Proxy     oracle.ide.webbrowser     11.1.1.0.22.49.35     Loaded
    oracle.ide.dependency     oracle.ide.dependency     11.1.1.0.22.49.35     Loaded
    oracle.ide.indexing     oracle.ide.indexing     11.1.1.0.22.49.35     Loaded
    Thread dump:
    Full thread dump Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode):
    "worksheet" prio=6 tid=0x2e5f1cf0 nid=0xcec in Object.wait() [0x30e3f000..0x30e3fce8]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x033d4858> (a java.awt.EventQueue$1AWTInvocationLock)
    at java.lang.Object.wait(Object.java:474)
    at java.awt.EventQueue.invokeAndWait(EventQueue.java:846)
    - locked <0x033d4858> (a java.awt.EventQueue$1AWTInvocationLock)
    at javax.swing.SwingUtilities.invokeAndWait(SwingUtilities.java:1257)
    at oracle.dbtools.sqlworksheet.sqlview.SqlEditor$2.construct(SqlEditor.java:866)
    - locked <0x06b38170> (a oracle.jdbc.driver.T4CConnection)
    - locked <0x06b38170> (a oracle.jdbc.driver.T4CConnection)
    at oracle.dbtools.raptor.utils.NamedSwingWorker$2.run(NamedSwingWorker.java:115)
    at java.lang.Thread.run(Thread.java:595)
    "IconOverlayTracker Timer" prio=6 tid=0x2d76ca38 nid=0xb8c in Object.wait() [0x3153f000..0x3153f
    9e8]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x06cffe60> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:474)
    at java.util.TimerThread.mainLoop(Timer.java:483)
    - locked <0x06cffe60> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "pool-1-thread-1" prio=6 tid=0x2e5bbad8 nid=0x354 waiting on condition [0x3103f000..0x3103fa68]
    at sun.misc.Unsafe.park(Native Method)
    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:118)
    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQ
    ueuedSynchronizer.java:1767)
    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:359)
    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:470)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:674)
    at java.lang.Thread.run(Thread.java:595)
    "Timer-2" prio=6 tid=0x2e601b18 nid=0xd20 in Object.wait() [0x30d3f000..0x30d3fae8]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x06abcbd8> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:474)
    at java.util.TimerThread.mainLoop(Timer.java:483)
    - locked <0x06abcbd8> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "TextBufferScavenger" prio=6 tid=0x2e7f2008 nid=0xdc4 in Object.wait() [0x30aaf000..0x30aafd68]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x068e0780> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x068e0780> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at oracle.ide.model.TextNode$FacadeBufferReference$PollingThread.run(TextNode.java:1886)
    "IconOverlayTracker Timer" prio=6 tid=0x2e801f78 nid=0x700 in Object.wait() [0x2f26f000..0x2f26f
    ae8]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x060a9968> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:474)
    at java.util.TimerThread.mainLoop(Timer.java:483)
    - locked <0x060a9968> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "IconOverlayTracker Timer" prio=6 tid=0x2e803d08 nid=0x33c in Object.wait() [0x2f16f000..0x2f16f
    b68]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x060a99e0> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:474)
    at java.util.TimerThread.mainLoop(Timer.java:483)
    - locked <0x060a99e0> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "TimerQueue" daemon prio=6 tid=0x2d926be8 nid=0xef8 in Object.wait() [0x2e13f000..0x2e13fb68]
    at java.lang.Object.wait(Native Method)
    at javax.swing.TimerQueue.run(TimerQueue.java:233)
    - locked <0x058debd0> (a javax.swing.TimerQueue)
    at java.lang.Thread.run(Thread.java:595)
    "AWT-EventQueue-0" prio=6 tid=0x2d8f8cd0 nid=0xa10 waiting for monitor entry [0x2dfce000..0x2dfc
    fbe8]
    at oracle.jdbc.driver.PhysicalConnection.isClosed(PhysicalConnection.java:1411)
    - waiting to lock <0x06b38170> (a oracle.jdbc.driver.T4CConnection)
    at oracle.dbtools.raptor.controls.cellrenderers.DefaultCellRenderer.getTableCellRenderer
    Component(DefaultCellRenderer.java:103)
    at javax.swing.JTable.prepareRenderer(JTable.java:3924)
    at javax.swing.plaf.basic.BasicTableUI.paintCell(BasicTableUI.java:2070)
    at javax.swing.plaf.basic.BasicTableUI.paintCells(BasicTableUI.java:1972)
    at javax.swing.plaf.basic.BasicTableUI.paint(BasicTableUI.java:1895)
    at javax.swing.plaf.ComponentUI.update(ComponentUI.java:142)
    at javax.swing.JComponent.paintComponent(JComponent.java:742)
    at javax.swing.JComponent.paint(JComponent.java:1005)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JViewport.paint(JViewport.java:728)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JSplitPane.paintChildren(JSplitPane.java:1021)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintChildren(JComponent.java:842)
    - locked <0x05874ed8> (a java.awt.Component$AWTTreeLock)
    at javax.swing.JComponent.paint(JComponent.java:1014)
    at javax.swing.JComponent.paintWithOffscreenBuffer(JComponent.java:4963)
    at javax.swing.JComponent.paintDoubleBuffered(JComponent.java:4916)
    at javax.swing.JComponent._paintImmediately(JComponent.java:4859)
    at javax.swing.JComponent.paintImmediately(JComponent.java:4666)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:451)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueueUtilit
    ies.java:114)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    "AWT-Windows" daemon prio=6 tid=0x2d8df4e8 nid=0xbb4 runnable [0x2ddcf000..0x2ddcfce8]
    at sun.awt.windows.WToolkit.eventLoop(Native Method)
    at sun.awt.windows.WToolkit.run(WToolkit.java:269)
    at java.lang.Thread.run(Thread.java:595)
    "AWT-Shutdown" prio=6 tid=0x2d8df0f0 nid=0x8e8 in Object.wait() [0x2dccf000..0x2dccfd68]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x05872240> (a java.lang.Object)
    at java.lang.Object.wait(Object.java:474)
    at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:259)
    - locked <0x05872240> (a java.lang.Object)
    at java.lang.Thread.run(Thread.java:595)
    "Java2D Disposer" daemon prio=6 tid=0x2d87d8d0 nid=0x8ec in Object.wait() [0x2dbcf000..0x2dbcf9e
    8]
    at java.lang.Object.wait(Native Method)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x058722c8> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at sun.java2d.Disposer.run(Disposer.java:107)
    at java.lang.Thread.run(Thread.java:595)
    "Low Memory Detector" daemon prio=6 tid=0x00c74c70 nid=0xa48 runnable [0x00000000..0x00000000]
    "CompilerThread0" daemon prio=6 tid=0x00c73328 nid=0x9ac waiting on condition [0x00000000..0x2d0
    bf84c]
    "Signal Dispatcher" daemon prio=6 tid=0x00c72768 nid=0x6a4 waiting on condition [0x00000000..0x0
    0000000]
    "Finalizer" daemon prio=8 tid=0x00c68818 nid=0x960 in Object.wait() [0x2cebf000..0x2cebfce8]
    at java.lang.Object.wait(Native Method)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x058201f0> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=6 tid=0x00c67d60 nid=0xd0 in Object.wait() [0x2cdbf000..0x2cdbfc
    68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:474)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
    - locked <0x05820270> (a java.lang.ref.Reference$Lock)
    "main" prio=6 tid=0x00858ae0 nid=0x874 waiting on condition [0x00000000..0x0012fb70]
    "VM Thread" prio=6 tid=0x00c283c8 nid=0x5d8 runnable
    "VM Periodic Task Thread" prio=6 tid=0x00c72440 nid=0x674 waiting on condition
    Message was edited by:
    fac586

  • Issue when installing SQL Server Express 2012 - "The requested control is not valid for this service" + "Could not find the database engine startup handle"

    Good morning,
    I'm experiencing the following issue when installing Microsoft SQL Server Express 2012 (with tools, SQLEXPRWT_x86_ENU.exe) on the laptop of my company;
    Installation goes plain until around the end of the progress bar, it stops on the setup of
    SqlEngineDBStartConfigAction_install_configrc_Cpu32
    giving 7-8 times, even pressing "Cancel", the message "The requested control is not valid for this service";
    After this, I receive one last message ""Could not find the database engine startup handle", then installation ends with failures, in particular the Database Engine and the Server Replication failed to be installed.
    I've put in my SkyDrive the error log I received after the install;
    I'm at full disposal if you need further information,
    thank you in advance
    Best regards
    Francesco

    Well, i just ran into this issue and the problem was lack of admin rights. It was my company's laptop so got the setup initiated by my company's IT team with admin rights. However, the upon completion of setup, i go the same error messages as stated above: 
    SqlEngineDBStartConfigAction_install_configrc_Cpu32
    giving 7-8 times, even pressing "Cancel", the message "The requested control is not valid for this service";
    After this, I receive one last message ""Could not find the database engine startup handle", then installation ends with failures, in particular the Database Engine and the Server Replication failed to be installed.
    Also, if you open SQL Server Configuration, the status of the service is "Change Pending" and you would not be able to set the startup login type to Local Service/System/Network.
    Then, I just got my account added as Local Admin and then tried to start the service and was able to.
    However, I am not sure whether same was the case for you.
    Please mark the answer as helpful if i have answered your query. Thanks and Regards, Kartar Rana

Maybe you are looking for