Help in delete

Hi,
I do this statement and its not working,
what is the way to delete table when subty ne the nuber in brackets?
DELETE t_4000 WHERE subty NOT IN ( 01 , 12 , 11, 16 , 17 , 29).
Regards

Hi
try like this
DELETE t_4000 WHERE  subty ne ' 01' and
                                       subty ne  '12'  and
                                       subty ne  '11'  and
                                       subty ne  '16'  and
                                       subty ne  '17'  and
                                       subty ne  '29' ).
Hope it would help you.
Regards,
Venkatram

Similar Messages

  • Can anyone help me deleted this existing photos in my photo library.i already did to sync it up on itunes ang remove all photos ang sync.but still there is 5 photos in my general about eventhough my camera roll is empty.plsss help.thanks.

    can anyone help me deleted this existing photos in my photo library.i already did to sync it up on itunes ang remove all photos ang sync.but still there is 5 photos in my general about eventhough my camera roll is empty.PLEASE HELP!Thanks.

    i mean "and" not "ang" btw.

  • EMail on my iPhone 4s is no longer synching right with my Mac. Things I delete on my Mac are still on my iPhone. HELP!  Deleting in both places is so time consuming. It has worked until recently...not sure what changed!

    Things I delete on my Mac are still on my iPhone. HELP!  Deleting in both places is so time consuming. It has worked until recently...not sure what changed!

    Your email provider may have changed certain settings to do with deleting from server when deleting from client so that it no longer works. Are you using pop or imap? If pop then recreate the account using imap.

  • Can you help me delete photo library & duplicate photo library

    Hi,
    I don't know what I did, but I somehow copied 44 of my daughter's music images into my photo library and then created a duplicate with 43 images.  These 87 images are taking up room and there is no obvious way to delete them. 
    Here's what happens when I touch camera roll it brings me to the photo library -- where 43 out of 44 images are hers:
    I click edit and the only options are share via email, faceboook, twitter, etc. or add to which leads to create a new album.  I don't want to do any of this.  I just want to delete them to make room.
    The same options apply for the Duplicate album as well.
    Can you help me delete the photo library and the duplicate library on my phone?  I only want to keep one video in the camera roll and all of the rest of the images can go.
    Thanks!

    Thanks for your response.  I think you just isolated my issue -- I was trying to upload music and somehow wound up syncing my daughter's photos to my iphone.  I don't know how to delete them because not all of the album/folders are appearing there.  Do you have any suggestions on how to find them?

  • HELP - I deleted an adobe file that I saved to a memory stick and I need it back really badly :(

    HELP - I deleted an adobe file that I saved to a memory stick and I need it back really badly

    Try this Google search:
    http://www.google.cl/#hl=es&tbo=d&sclient=psy-ab&q=free+data+recovery+software+for+flash+d rives&oq=recovery+software+for+flash+drives&gs_l=hp.1.3.0i30j0i5i30l3.9708.24161.0.34539.3 4.26.0.8.8.0.378.7320.2-21j5.26.0...0.0...1c.1.lb0o4diaEEU&pbx=1&bav=on.2,or.r_gc.r_pw.r_q f.&bvm=bv.1355534169,d.eWU&fp=ff7a879957bf69ba&bpcl=40096503&biw=1112&bih=865
    It gave me plenty of hits, but be a little careful. I would suggest using the free trial of one of the paid products. As I have never used one, I cnnot recommand any.
    And remeber: every time you write something on that flash drive, you risk overwriting your lost file, thus decreasing your chances of recovering it.

  • Help! deleted file on dropbox can i recover it on time machine?

    Help I deleted my senior project! So i was responsible and synced my project with drobox and "regularly' backed up my computer. Well, after I turned it in I needed some space in my drobox and deleted my synced folder which deleted it off my computer. I backed up my computer the day after and I guess I didnt realize that I had deleted this IMPORTANT folder for awhile... So its 3 months from when I did that so too late to recover the lost files from dropbox. Is there a way I can recover the folder from time machine? The last backup was way too old before I deleted the file and I only have a backup from the day AFTER I deleted it. Please help!

    Read https://discussions.apple.com/thread/3822378?start=0&tstart=0
    Allan

  • Need help on deleting after exporting to IDML

    Hi Forum,
    I have a script to export all the "indesign files" found inside the folder... and then remove all the indesign files...
    Instead, Can i have a help to delete....
    the indesign file after exporting to IDML and then
    continue opening the next indesign file, exporting to IDML and deleting it...
    then continue file3....
    The below is the script open indesign files and export to idml and then remove all the files inside the folder Desktop/GENERAL_CS6-IDML/IN_CS6
    var mySourceFolder = Folder("Desktop/GENERAL_CS6-IDML/IN_CS6");
    var myOutFolder = Folder("Desktop/Completed");
    //var Indd_files = get_Files(mySourceFolder,[], ".indd");
    var Indd_files = mySourceFolder.getFiles (/\.indd|\.INDD/i);
    //var Indd_files = get_Files(mySourceFolder,[], ".indd");
    if(Indd_files.length>0)
        for(var w=0;w<Indd_files.length;w++)
            try{
                 app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract;
                myDoc = app.open(File(Indd_files[w]));
                 app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract;
                 var myDocNam = stripExt((Indd_files[w].name).replace(/%20/g," "))+"idml";
                 myDoc.exportFile(ExportFormat.INDESIGN_MARKUP, (File(myOutFolder+"/"+myDocNam)));           
    //          myDoc.save(File(myOutFolder+"/"+myDocNam));
                app.activeDocument.close(SaveOptions.no);
            }catch(E){}
    try {
    var copyFolder1 = Folder("Desktop/GENERAL_CS6-IDML/IN_CS6");
    var myFiles2 = copyFolder1.getFiles(/\.indd|\.INDD/i);
    for ( i = myFiles2.length-1; i >= 0 ; i-- ){
    myFiles2[i].remove();
    } catch (e) {}
    Many thanks for the support..

    I hope this is what you expected.
    You can try the following code:
    var mySourceFolder = Folder("Desktop/GENERAL_CS6-IDML/IN_CS6");
    var myOutFolder = Folder("Desktop/Completed");
    //var Indd_files = get_Files(mySourceFolder,[], ".indd");
    var Indd_files = mySourceFolder.getFiles (/\.indd|\.INDD/i);
    //var Indd_files = get_Files(mySourceFolder,[], ".indd");
    if(Indd_files.length>0)
        for(var w=0;w<Indd_files.length;w++)
            try{
                 app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract;
                 var myFile = File(Indd_files[w]);
                myDoc = app.open(myFile);
                 app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract;
                 var myDocNam = stripExt((Indd_files[w].name).replace(/%20/g," "))+"idml";
                 myDoc.exportFile(ExportFormat.INDESIGN_MARKUP, (File(myOutFolder+"/"+myDocNam)));          
                app.activeDocument.close(SaveOptions.no);
                myFile.remove();
            }catch(E){}
    Green4ever

  • Help in DELETE script

    Hi, I have duplicate records and want to delete any 2nd duplicate row. Please help in DELETE script.
    Select * from cmhrec
    Sr_no  code    date     charge   Charge2 Code_ID
    1        AAA   1-1-2014  24.0      24.0      5
    1        AAA   1-1-2014  24.0      24.0      9
    2        AAA   1-1-2014  23.0      23.0      4
    2        AAA   1-1-2014  23.0      23.0      11
    3        AAA   1-1-2014   26.0      28.0     12
    3        AAA   1-1-2014   26.0      28.0     19
    --Desired output after deleting any 2nd duplicate row.
    Sr_no  code    date     charge   Charge2 Code_ID
    1        AAA   1-1-2014  24.0      24.0      5
    2        AAA   1-1-2014  23.0      23.0      4
    3        AAA   1-1-2014   26.0      28.0     12

    Thank you
    You can simply do this
    DELETE t
    FROM cmhrec t
    WHERE EXISTS
    SELECT 1
    FROM cmhrec
    WHERE SrNo = t.SrNo
    AND Code = t.Code
    AND Code_ID < t.Code_ID
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • I'm on my iPod touch 4th generation and I wanna delete apps. Well I hold it down nd the X appears but as soon as I press the X it doesn't do anything for a little bit and then shuts down and turns on again by itself, HELP ME DELETE!

    I'm on my iPod touch 4th generation and I wanna delete apps. Well I hold it down nd the X appears but as soon as I press the X it doesn't do anything for a little bit and then shuts down and turns on again by itself, HELP ME DELETE!

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar    

  • HT1338 Guys I need some help with deleting junk mail/bulk mail...I keep getting this air message that says THE IMAP COMMAND "UID COPY" (TO DELETED MESSAGES) FAILED FOR THE MAILBOX "BULK MAIL" WITH SERVER ERROR: UID COPY SERVER ERROR- PLEASE TRY AGAIN LATE

    I need help in deleting my junk mail/bulk mail...when I dump junk mail and bulk mail into the trash it not allowing me to delete all mail only some. HELP!!

    What program are you using?  And what version?

  • Please Help with Deleting and Putting in Music

    Hi. I have a Nokia5300 Express Music. I want to add music on it but i don't know how. I have windows media player the PC suite thing and everything. But I don't know how to delete music or import music please help. This is very different from the ways i do it from the Ipod ...
    HELP HELP HELP

    wait wait guys please help me delete my music i really want to delete ALL my music and put in NEW music i hate the windows media player iuno how to unsync it and delete it T_T

  • Help for delete data!!!

    hi,
    i want to delete some data from a table and i wrote a sql query likes that
    DELETE
    FROM crm2.employee e
    WHERE e.lastname = 'VOX'
    AND length(e.loginname) >= 39
    AND e.pkey NOT IN (SELECT employeegroup FROM groupmember)
    AND ROWNUM < 2;
    although that query deletes 1 row but it takes too much time to delete.
    how can i fix that problem, i want to do that delete operation very fast.
    PS: groupmember is the parent table of the crm2.employee
    Thanks...

    This should help you delete your data faster.
    When your query takes too long ...

  • It stopped me manifest smilies on facebook (chat, status updates, comments) on Mozilla and not helped or delete cookies and everything else, or reinstall. I use

    It stopped me manifest smilies on facebook (chat, status updates, comments) on Mozilla and not helped or delete cookies and everything else, or reinstall. I use Win 8.1 and I'm forced to install Opera, and if this does not work, the brand will move to Opera. I'm sorry, all is right with the browser but this made me very hampers and can not be used like this. I hope a rapid response to [email protected]
    http://i.imgur.com/IWrR0Ke.png?2
    I NEED HELP URGENT!!!

    Sorry for bad english ;-)

  • N71 Help in deleting email addresses

    HI
    Can anyone please help with deleting emaail addresses in this phone.
    Thanks
    Sandi53

    26-Oct-2008 08:33 AM
    sandi53 wrote:
    HI
    Can anyone please help with deleting emaail addresses in this phone.
    Thanks
    Sandi53
    open the contact where the address is
    options>edit>scroll down to e-mail>delete info>press done.
    Grayburn @ www.nokiausers.net & www.dailymobile.se....come say Hello!!!
    If you appreciate ANY help from a member,then show it by clicking on the Blue Star button, cheers

  • Why does RoboHelp 8 crash when compiling merged HTML help after deleting a child project in TOC

    Why does RoboHelp 8 crash when compiling merged HTML help after deleting a child project in TOC? I would be grateful for any assistance.
    Here's the situation:
    -- I recently upgraded from RoboHelp X5 to RoboHelp 8. I upgraded my projects to RoboHelp 8 projects.
    -- One large help system I manage is built such that there is one master project and about 25 child projects. Each of these is its own item in the master project TOC.
    -- In RoboHelp X5 I never had any trouble deleting these.
    -- However now in RoboHelp 8, whenever I delete one (by opening TOC pod, right-clicking on item in question, and clicking Delete), and proceed to "Generate Primary Layout" (MS HTML Help), the generation/compilation process proceeds as far as "Generating full-text search data" and then the whole program crashes!
    Am I doing something wrong? Is there a bug in the software? I have installed patches 8.0.1 and 8.0.2.
    Once again, I thank you in advance for any pointers.
    Matthew Keranen
    Jamsa, Finland

    That does help - thanks a lot.
    Wayne Kroger
    State Street Corporation
    SQA-Princeton
    (609) 580-6264
    mail to: [email protected]
    The information contained in this email and any attachments have been classified as limited access and/or privileged State Street information/communication and is intended solely for the use of the named addressee(s). If you are not an intended recipient or a person responsible for delivery to an intended recipient, please notify the author and destroy this email. Any unauthorized copying, disclosure, retention or distribution of the material in this email is strictly forbidden.

  • Help on Delete Link

    Help on Link
    I have report with following query
    select htf.anchor('DELETE_empno?p_id='||id,empno) delete,
    id download ,
    from emp
    I get Link for Delete on empno
    when i press the Link My procedure is executing but page is not refreshing
    The page is shwoing the procedure name
    What i need is page refresh and execute the procedure and display the report
    Any help is appreciated

    when you click on your link, the procedure DELETE_empno is firing but because Apex has not submitted the page (you just execute the PL/SQL procedure from a url call), you will have to redirect the URL to the page you want to go to.
    This can be done using the OWA_UTIL.redirect_url api after your pl/sql successfully executes.
    owa_util.redirect_url ('f?p=&APP_PAGE_ID.:PAGE_NO:&SESSION.:::CC');
    where:
    PAGE_ID = the page number you want to redirect to
    CC = the page number to clear the cache of (if requierd)
    An alternative approach may be to change your anchor link to submit the page with a delete request and fire your process that way. By doing this, you could then assign it a page branch, cache clear etc in the normale way

Maybe you are looking for

  • X1 and 2 externals screens

    HI, The X1 has an HDMI and a mini DP, is it possible to work with 2 external extended windows desktop environement? or can't the 2 output be used symuteniously  Thank you

  • How do I use the Xbox 360 controller

    Hello, As everyone knows the XBOX 360 controller is the definitive controller for Windows gaming. I'm working on two projects now.  One in Flash and one in Unreal Engine.  I thought,"Wouldn't it be great to work on three projects at once." So the ide

  • How do you know if you have all the requirements in order to download Firefox?

    I've been trying to update my Firefox (version 3.6.17) so I can still go on YouTube and to just update it. I've already tried to reinstall it, but its the same version. I would like to know if there's a command for terminal to show if I have all the

  • Sound defaults to HDMI output after reboot (even when HDMI not connected)

    Toshiba Chromebook 2, on Chrome OS Trying to figure out how to change the default back to internal audio speakers permentantly. Whenever I close/reopen the laptop, it changes back to HDMI as deafult and I have to manually go back and change the setti

  • Message_type_x error in mr11

    hi gurus , i am getting a message_type_x error in mr11 in the following code in the function module 'CKMLGRIR_POST_GRIR_MAINTAIN i have commented the line which throws run time error FORM CHECK_ACTIVITY_TAB_POST. Pflegen der Tabelle ACTIVITY_TAB   CL