Select with Where not in (subselect)

Hello
Are there any special about 'no' in the ORacle sql (10g) that it returns me all the lines, unlike SQL Server with the same code:
select count(*) from t1_ups where  id_ups not in (select b.id_ups from t1_dups b)
COUNT(*)               
---------------------- 
0 

vs.
select count(*) from t1_ups where  id_ups not in ('abc', 'def','xyz')  --select b.id_ups from t1_dups b)
COUNT(*)               
---------------------- 
16 

DDL:
    "id_ups"            VARCHAR2(20 BYTE),   is the same for both tables.
I see that to remove < not > it works fine. is there any GOLD-> happaned plate AND with the negation?
My overall task is to make the UNION "with replacement" when if any records exist in id_dups they will replace those of id_ups, so I try to make it into several parts.

Thank you

TR

Published by: trento on Nov 16, 2010 15:00

Use NOT EXISTS instead of NOT IN.

select count(*) from t1_ups u where
not exists (select b.id_ups from t1_dups b where b.id_ups= u.id_ups)

Tags: Database

Similar Questions

  • SELECT statement where not equal number of columns

    Hi experts,

    I have a sum of column
     
    
    id    amount
    
     1       123.0000000000
     2      33344.0000
     3      66666.36220000000000000000 
     4       2122222.7878789799999
     5       444444444
     6       .000000000000000000000
     7        wweeeeeeeeeerr
     8       eeeeeeeeeeeeeet
    
    
    I want to get :
    
    id         amount
    
    7        wweeeeeeeeeerr
     8       eeeeeeeeeeeeeet
    Thanks in advance

    A way

     with tempdata
     as(select '123' amount from dual union
     select 'ABC12' from dual union
     select 'abc' from dual union
     select '123.00' from dual )
     select  * from tempdata where
      LENGTH(TRIM(TRANSLATE(amount, ' +-.0123456789', ' '))) is not null
    
  • Select with the DATE WHERE the...

    Hi all!

    I need to select with where condition on cirtain cust_date date (date) specifying columns say date01 = 25 August 10 'and time range somewhere between time01 = 7:15:00 ' and time2 = 9:30:00 ' ('HH24:MI:SS).
    I have some test data and I saw still some trouble with my select particular regarinding of time slot.

    Can someone tell me what will be the easiest way to do this, especially for the begiinner;

    SELECT * FROM TABLE1 WHERE cust_date > to_date (August 25, 2010 7:15:00 ',' DD-MON-YY HH24:MI:SS')...

    I just do to_date after >?


    TX
    Trent

    Trento wrote:
    Hi all!

    I need to select with where condition on cirtain cust_date date (date) specifying columns say date01 = 25 August 10 'and time range somewhere between time01 = 7:15:00 ' and time2 = 9:30:00 ' ('HH24:MI:SS).
    I have some test data and I saw still some trouble with my select particular regarinding of time slot.

    Can someone tell me what will be the easiest way to do this, especially for the begiinner;

    SELECT * FROM TABLE1 WHERE cust_date > to_date (August 25, 2010 7:15:00 ',' DD-MON-YY HH24:MI:SS')...

    I just do to_date after >?

    TX
    Trent

    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14200/functions183.htm#SQLRF06132

    Connected to Oracle Database 11g Enterprise Edition Release 11.1.0.7.0
    Connected as SYS
    
    SQL> desc SH.SALES
    Name          Type         Nullable Default Comments
    ------------- ------------ -------- ------- -------------------------------------------------------------------------------------------
    PROD_ID       NUMBER                        FK to the products dimension table
    CUST_ID       NUMBER                        FK to the customers dimension table
    TIME_ID       DATE                          FK to the times dimension table
    CHANNEL_ID    NUMBER                        FK to the channels dimension table
    PROMO_ID      NUMBER                        promotion identifier, without FK constraint (intentionally) to show outer join optimization
    QUANTITY_SOLD NUMBER(10,2)                  product quantity sold with the transaction
    AMOUNT_SOLD   NUMBER(10,2)                  invoiced amount to the customer                                                             
    
    SQL>
    SQL> SELECT *
      2  FROM SH.SALES S
      3  WHERE S.TIME_ID >= to_date('19970102','YYYYMMDD')
      4  AND ROWNUM < 4
      5  ;
    
       PROD_ID    CUST_ID TIME_ID     CHANNEL_ID   PROMO_ID QUANTITY_SOLD  AMOUNT_SOLD
    ---------- ---------- ----------- ---------- ---------- ------------- ------------
            37        368 01/01/1998           2        999          1.00        63.57
            37       4687 01/01/1998           2        999          1.00        63.57
            37       8302 01/01/1998           2        999          1.00        63.57
    SQL>  SELECT *
      2  FROM SH.SALES S
      3  WHERE S.TIME_ID >= to_date('19970102 10:12:00','YYYYMMDD HH24:MI:SS')
      4  AND S.TIME_ID < to_date('20000102 10:12:00','YYYYMMDD HH24:MI:SS')
      5  AND ROWNUM < 4
      6  ;
    
       PROD_ID    CUST_ID TIME_ID     CHANNEL_ID   PROMO_ID QUANTITY_SOLD  AMOUNT_SOLD
    ---------- ---------- ----------- ---------- ---------- ------------- ------------
            37        368 01/01/1998           2        999          1.00        63.57
            37       4687 01/01/1998           2        999          1.00        63.57
            37       8302 01/01/1998           2        999          1.00        63.57
    
    SQL> 
    
    SQL>
    SQL>  SELECT *
      2  FROM SH.SALES S
      3  WHERE S.TIME_ID >= to_date('January 15, 1989, 11:00:00','Month dd, YYYY, HH:MI:SS',
      4       'NLS_DATE_LANGUAGE = American')
      5  AND S.TIME_ID < to_date('January 15, 2000, 11:00:00','Month dd, YYYY, HH:MI:SS',
      6       'NLS_DATE_LANGUAGE = American')
      7  AND ROWNUM < 4
      8  ;
    
       PROD_ID    CUST_ID TIME_ID     CHANNEL_ID   PROMO_ID QUANTITY_SOLD  AMOUNT_SOLD
    ---------- ---------- ----------- ---------- ---------- ------------- ------------
            37        368 01/01/1998           2        999          1.00        63.57
            37       4687 01/01/1998           2        999          1.00        63.57
            37       8302 01/01/1998           2        999          1.00        63.57
    
    SQL>
    SQL> SELECT *
      2  FROM SH.SALES S
      3  WHERE S.TIME_ID >= to_date('14-Feb-1998 11:00:00','DD-Mon-YYYY HH24:MI:SS',
      4       'NLS_DATE_LANGUAGE = American')
      5  AND S.TIME_ID < to_date('17-Mar-2000 11:00:00','DD-Mon-YYYY HH24:MI:SS',
      6       'NLS_DATE_LANGUAGE = American')
      7  AND ROWNUM < 4
      8  ;
    
       PROD_ID    CUST_ID TIME_ID     CHANNEL_ID   PROMO_ID QUANTITY_SOLD  AMOUNT_SOLD
    ---------- ---------- ----------- ---------- ---------- ------------- ------------
            36       2168 15/02/1998           3        999          1.00        51.29
            36       7237 15/02/1998           3        999          1.00        51.29
            36       7678 15/02/1998           3        999          1.00        51.29
    
    SQL>  
    
  • Selection tool is not the tail with images when you drag

    So I had this frustrating thing for a while. When I put my selection tool a video file at first to move to the side or another layer and as soon as, like moving the selection tool a bit, he places automatically the video one layer under my selection tool... So I have to move the selection up to a length of layers tool to adjust it to the left and right on the timeline... Just a fight. I wish that the selection tool has not changed the layer of videos when I moved it left and right... Just stick with the images that I am setting on the im adjustment layer. Check out the video and you will understand what im getting. The selection tool shows a strange looking symbol with an arrow pointing down so I guess it's just a special feature that was accidentally checked the. You just don't know where I can go back to normal. Thank you

    Video:

    Went on the Chat with Adobe and they solved the problem via remote access.

    First on erase my personalized workspaces closed first pro. Then went to my "documents" (I have a mac) 'Adobe' and then click 'Premiere Pro' and moved three files named "6.0" "9.0" and "10.0" in a new folder, that they named "Od." Finally they opened back first. When the box came to put everything in place, they went up to the top of the window and deselected "import the project workspace" under "workspaces". I have opened a project and it fixed the problem. I had to make a new workspace and change some shortcuts custom back, but other that that, it was back to normal.

  • "Error while interacting with the scanner: the selected scanner was not found." Called brother and my MFC 7360N works very well with other programs to scan - only problem with Adobe Acrobat Pro 11.

    "Error while interacting with the scanner: the selected scanner was not found." Called brother and my MFC 7360N works very well with other programs to scan - only problem with Adobe Acrobat Pro 11.

    Hi davidd67669685,

    Please provide the exact point of the software & OS installed on your system. Also check if it is there any update available for the software after going through "help > check updates.

    Follow this thread to reset the Acrobat preferences:- How to reset preference settings in format Acrobat.

    You can check after connecting this scanner locally to the system if asked its connected on network & then look for the same thing.

    Please refer to this article:- of the troubleshooting tips for scanning questions when using Acrobat

    If the problem persists ask please check with another user account.

    Kind regards

    Christian

  • Selecting with the range of colors does not work correctly

    Well, at least for me it does not correctly.  If I have items on separate levels, and I use the color range option to select the area, it works at all levels, not just the level I selected.  This isn't what I want!  I want only to choose the range of color at a level.  The work-around needs to manually turn the other levels, but on a file with a lot of levels, which can be tedious.  Can this be avoided?  Either way, magic wand works only on the selected level, but not color range (or the range of colors, if you're American).

    The work-around needs to manually turn the other levels, but on a file with a lot of levels, which can be tedious.

    Hide all other layers can be done by alt-click on the visibility icon in the layers panel.

  • SELECT with many setting set SQLite (&gt; 200)

    Hello

    I have an exception when I run a simple SELECT with 220 parameters:

    Statement st = mSQLiteDatabase.createStatement ("SELECT name, UserId FROM myTable WHERE UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? OR UserId =? ») ;

    If I execute the same statement with 10 settings for example, there were no problems!

    Is this another limitation of implementation of Blackberry?

    Thanks in advance.

    You can try this IN operator

    Statement st = mSQLiteDatabase.createStatement ("SELECT name, UserId FROM myTable WHERE UserId in (UserId, UserId, UserId, UserId,... UserId);")

    Note: This is not tested in the Sqlite database.

    But successfully performed in the other RDatabase.

    Thank you

    ------------------------------------------------------------------------------------
    Kudo press to say thank you to the developer.
    Also, press accept it as a button when you got the Solution.

  • Am confused on how to select several files not in order

    Everywhere where he talked about Windows, books, Web sites, maybe tv shows all say the same thing when you try to select several files not in order. So I told you must hold the Ctrl key and select your files.

    The problem is sometiomes all files I've selected - they are re-copied.

    So if I have ten files, I'm now twenty years old. Can someone explain the best thing ion theworld is so hard to undersrtand? I mean, what does make these files to work as I want it to work. When seloecting files with the cntrl key just seems to increase my workload.

    Everywhere where he talked about Windows, books, Web sites, maybe tv shows all say the same thing when you try to select several files not in order. So I told you must hold the Ctrl key and select your files.

    The problem is sometiomes all files I've selected - they are re-copied.

    So if I have ten files, I'm now twenty years old. Can someone explain the best thing ion theworld is so hard to undersrtand? I mean, what does make these files to work as I want it to work. When seloecting files with the cntrl key just seems to increase my workload.

    Hello

    This a problem running.

    What happens is that when you select multiple files, you select one of the files and the mouse is moved, even slightly, when you release the mouse button, all the selected files will be copied to the same folder. You must be very careful not to move the mouse when you select files.

    Concerning

  • The polygonal Lasso tool - no WARNING WARNING: no pixel is selected more than 50%. The edges of the selection will be not visible.

    I tried for hours without success to snap a portion of a photo by using the tool "Polygonal Lasso" and I get the error "no WARNING WARNING: no pixels are selected to more than 50 percent." The edges of the selection will be not visible.  No matter where you are looking for a solution, it always seems to suggest that you change the "panache".  I did this.  Several times with zero success.  There must be another solution.  Can you help me please?  Thank you.

    Brian Stephens

    You set the pen in the toolbar options to 0 px (zero) before using the Polygonal Lasso tool?

  • Export (expdp) with where clause

    Hello gurus,

    I'm trying to export with where clause. I am getting error below.


    Here is my order of export.
    expdp "'/ as sysdba'" tables = USER1.TABLE1 directory=DATA_PUMP dumpfile=TABLE1.dmp logfile=TABLE1.log query= “USER1.TABLE1:where auditdate>'01-JAN-10'”
    Here is the error
    [keeth]DB1 /oracle/data_15/db1> DATA_PUMP dumpfile=TABLE1.dmp logfile=TABLE1.log query= USER1.TABLE1:where auditdate>'01-JAN-10'                    <
    
    Export: Release 11.2.0.3.0 - Production on Tue Mar 26 03:03:26 2013
    
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Starting "SYS"."SYS_EXPORT_TABLE_03":  "/******** AS SYSDBA" tables=USER1.TABLE1 directory=DATA_PUMP dumpfile=TABLE1.dmp logfile=TABLE1.log query= USER1.TABLE1:where auditdate
    Estimate in progress using BLOCKS method...
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 386 MB
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/TRIGGER
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    ORA-31693: Table data object "USER1"."TABLE1" failed to load/unload and is being skipped due to error:
    ORA-00933: SQL command not properly ended
    Master table "SYS"."SYS_EXPORT_TABLE_03" successfully loaded/unloaded
    ******************************************************************************
    Dump file set for SYS.SYS_EXPORT_TABLE_03 is:
      /oracle/data_15/db1/TABLE1.dmp
    Job "SYS"."SYS_EXPORT_TABLE_03" completed with 1 error(s) at 03:03:58
    Version
    SQL> select * from v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for IBM/AIX RISC System/6000: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production

    Hello

    You must use the settings file. Another question, I see you are using 11g. Why don't you use a data pump.?
    Data pump is faster and has more features and that regular improvement imp and exp.

    You can do the following:

    sqlplus / as sysdba
    
    Create directory DPUMP_DIR3  for 'Type here your os path that you want to export to';
    

    then tap on a file:
    Touch par.txt

    In this file, type the following line the following:

    tables=schema.table_name
    dumpfile=yourdump.dmp
    DIRECTORY=DPUMP_DIR3
    logfile=Your_logfile.log
    QUERY =abs.texp:"where hiredate>'01-JAN-13' "
    

    then proceed as follows
    expdp username/password name parfile = 'par.txt'

    You will import to Oracle 11 g to 10g version should add 'version = 10' parameter in the above setting file

    BR
    Mohamed enry
    http://mohamedelazab.blogspot.com/

  • SELECT with the combination of two columns query

    I need the research to write a nested select statement that would achieve the following.
    Support I have a table as follows
    TestTable
    Name: Age: country
    Test1: 10: USA
    Test2: 11: us.
    Test3: 12: us.
    Test4: 11: Canada
    Test5: 12: Canada

    Now, I want to select in the table above gives the following information.
    Get all the names of people who do not belong to this combination (10:USA, 11:Canada, 12:Canada). The list can be huge.
    The result should be
    Test1:10:USA
    Test1:12:USA

    If it was a combination, I can write
    Select * from TestTable
    the age where <>10 and <>country Canada

    Also, I can also do
    Select * from TestTable
    the age where NOT IN (10,11) and country NOT IN (USA, COUNTRY)
    But I do have that he would give me a correct result.

    sush_msn wrote:
    Is there a way I can move the age and the country as a list on the query?

    You asked the right question.

    Three things you need to know:

    (1) your test data cover all combinations. This is the most comprehensive test data:

    create table test_table1 as
    WITH AGES AS (
      SELECT LEVEL+10 AGE FROM DUAL CONNECT BY LEVEL <= 3
    ), COUNTRIES AS (
      SELECT 'USA' COUNTRY FROM DUAL
      UNION ALL
      SELECT 'CANADA' COUNTRY FROM DUAL
    )
    SELECT 'Test' || ROWNUM NAME, AGE, COUNTRY FROM AGES, COUNTRIES;
    
    NAME                                                AGE COUNTRY
    -------------------------------------------- ---------- -------
    Test1                                                11 USA
    Test2                                                11 CANADA
    Test3                                                12 USA
    Test4                                                12 CANADA
    Test5                                                13 USA
    Test6                                                13 CANADA
    

    (2) now, here's the answer to your question. You can go back two or more values in an expression by putting parentheses around them.

    SELECT * FROM TEST_TABLE1
    WHERE (AGE, COUNTRY) NOT IN (
      (11, 'USA'),
      (12, 'CANADA')
    );
    
    NAME                                                AGE COUNTRY
    -------------------------------------------- ---------- -------
    Test2                                                11 CANADA
    Test3                                                12 USA
    Test5                                                13 USA
    Test6                                                13 CANADA
    

    That's what made the Etbin above, but he used a select instead of a list of values.

    (3) can AGE or COUNTRY ever be NULL? You want to return the records that have NULL values in them? If so, you must use NOT EXISTS instead of NO po WARNING: Etbin code needs a bit of change: "where (age, country) = (t.age, t.country)" should be "where (age, country) = ((t.age, t.country)) '. You must always additional brackets on the right side.

  • Selection tool is not as expected

    PS CC, when I use the marquee (box of ants running) tool he appears on-screen as a reticle with a small sign down to the right index, and I can't not to deselect a marquee with a simple click on the image. I have to go to the command-D to do. I realize that the index the more means can I gang - select more than one area, but I'd rather be able to empty a marquee selection with a single click. I hope that - uh, improving, rather than at the place of installation click to deselect older. IS it? and if so, how do I change back to the old system?

    The fixed. Sorry, that was the usual corrupt preferences. I've trashed their and the subscript-plus went, then, as suggested, I could access it with the SHIFT key. BTW, thanks for taking the time to answer. Where can I find a directory of improvements keyboard like that? Nothing showed up in Edit/shortcuts.

  • "You are now in review Mode. Any selected choice will not be tracked"message is displayed in read mode

    HI -.

    I hope someone can help me with this. Whenever I create a project to capture 6 (or a virtual classroom recording in Adobe Connect) and we publish the material and make it available to our viewers in to connect, a message at the top saying "you are now in review Mode. Any selected choice will not be tracked. »

    We called Adobe several times without success as they say it is normal, but I watched the other videos to record Captivate and virtual classes from other companies and the "révision Mode" message does not appear during playback. It's very confusing to our viewers because they are worried, responses to the built-in quiz will not count and "do not track" the message says.

    Everyone knows this? I think it's a problem with a connection setting because when I look at the video of my content in Connect, reading seems functional and the message does not appear. When wrap us a course around the content and make it available to customer in the training catalog, the message appears.

    Review mode.png

    The message in review mode when someone interacted with the course and to be successful there is no predefined number of times. Then, when they consider it after one of these conditions is met, they will see the message in review mode, because Connect is followed is no longer their access, as it is useless. The course essentially becomes a resource for them until the date of its closure.

    Thus the viewer / learner has met one of these two conditions or credentials are shared (against EULA). If you don't need specific follow-up user, then let the presentation in the form of a content item, and no one will not see this message. If an individual is to see this message, and they do not know why, look at the reports for this person and see where their status is for this course.

  • Adobe Acrobat 9: Javascript populated the drop-down list box - response selected array will not save

    I have a combo on one of my forms box that is filled with the help of a Javascript array.  The drop-down list box is filling very well, but when an item is selected in this drop-down list box, the selected item does not save when the user saves the document.  Any suggestions as to what is the problem and how it can be corrected?  I am a loss to know where even to start the search.  Any help is greatly appreciated.

    Thank you.

    Lisa

    It seems that the drop-down list box may be getting filled with code that runs when the form is opened. If so, it will overwrite the value selected, whenever it opens. The solution would be to change the code so that it is not than that. If not, you can post the form somewhere so we can take a look?

  • White on white selection with the magic wand of refining

    I'm trying to remove the background of a picture of BW - one model posing in front of a white background.

    Select with the magic wand works fine except on the area where the light on the model wears the white skin. When I choose, I get the hand and the lower part of the arm (see below) but miss the box top, completely white. I tried all kinds of settings and also tried to increase the contrast with a brightness/contrast layer, but nothing I I understand allows me to keep the arm and remove the bottom with the arm.  FWIW, the image cannot be redone.

    How can I do? Thanks for any help.

    EdB

    fist copy.jpg

    Learn how masking... Also in white when mixed in a layer with the blending mode multiply does not change.  So, if you add a new layer on top of your image and set its blending mode to multiply. You will see your arm starts to show through. Add a maske layer to this layer and paint with black to show the lower arm of the layer by hiding the top layer on the arm area.

Maybe you are looking for

  • Satellite C660-220 - cannot update graphic driver Intel

    In short, I'm looking to update the graphics drivers Intel HD Graphics, the current version is 8.15.10.2189, I tried several times to get from the own Intel site but either I download bad or simply can't. I can't find the driver under the Toshiba Sup

  • Add data to an [existing] the AnalogWaveform &lt; Double &gt;

    Hello I'm the life-long tension using DAQmx scene, and I am puzzled as to how I can add new samples in an existing array of waveform.  Whenever I run my program, I receive only 1000 samples of data in the AnalogWaveformarray.  Because I need to do so

  • Why can't I change my address (ID) to my windows live email?

    After that I typed in the new email address, that's what I got: You have already renamed this account. Please try again later. But, I do not rename the account long enough.  And, I do not change the e-mail address for a long time. Help, please.  Than

  • Dell will offer 10 Windows as a more air move to current customers?

    Hi all... I would just ask Dell if they will keep the customers happy by offering a more upgraded digital air or save location should current customers who would like to do a new installation back to how it was at the time of purchase, BUT with 10 Wi

  • I'd like to keep, but not on Boot

    OK, I did everything I can to find the departure for youcam at startup. I looked in msconfig, not there. looked in the registry and nothing remotely looks that run startup or boot or anything. so now I'm at a loss. It is not an autorun file in the fo