Marge....

merge into student a using department b
on (a.deptid=b.deptid)
when not matched then
update ser dept='N/A' where deptid is null
WHEN MATCHED THEN
UPDATE SET dept=deptname
error in the query.....it possible to use update statement in both case??????

I assume you get the:
ORA-00905: missing keyworderror on line 4 (the one in bold).
The Oracle parser is not expecting the 'update' keyword inside the 'not matched' branch of a merge statement. Think about it: in that branch, there is no match... so what row do you want to update?
You can only have an 'insert' action there.

Similar Messages

  • Company Code Marging

    Hi Experts,
    We have Two company codes i.e. A and B. Both the company codes belongs to the same Chart of Account, same Chart of Depreciation and same Controlling area.
    Now our management decides to close the company B and marge it to company A. They decides to create a Business Area and all the transactions of Company code B will come under it.
    So my question is now that how to transfer all the g/l balance, vendor and customer balance to Company code A. Any standard SAP procedure is there? There have also some open PR, PO exist in Co. Code B. What to do for that?
    Thanks & Regards,
    Sourav

    This looks simple of merging two company codes. But, in reality, it is one of the strenuous task ahead.
    You have two options:
    1. Manually migrating everything and finally lock everything in company code A.
    2. SAP recommends SLO (System Landscape Optimisation). This can only be done by SAP.
    Refer this case study:
    http://www.sap.com/community/webcast/2009_06_worldtour_fr/2009_06_Worldtour_SOL21_CanalPlus_SAP_fr.pdf
    Refer following SAP Note:
    Note 481938 - System Landscape Optimization Services

  • How can i marge all my items for 1 shipping package ?

    Hello
    I got today the iPhone 6 and also added the new leather case and i also want to order now 2 other accessories.
    i see in my order page that the case should ship in 1 day and the iPhone as we all know will ship in the 19 of September.
    Also the 2 other items can ship in 48 hours.
    I would like , Apple to ship all the items together and not 1 by 1.
    Is there a way to marge all the orders to 1 order so it can ship together ?

    If you are replacing a device, you need to restore your new device to the backup of your old one.  If you backed up your old device to iCloud and your new device is already set up, do the following:
    Go to Settings>General>Reset on your new device and tap Erase All Conent and Settings
    Go through the setup screens on your new device and when given the option, choose Restore from iCloud backup and follow the prompts.
    Be sure your device is connected to wifi and your charger as this may take some time to finish.

  • [svn] 900: Marge change 899 from 3.0.x to trunk.

    Revision: 900
    Author: [email protected]
    Date: 2008-03-24 11:57:55 -0700 (Mon, 24 Mar 2008)
    Log Message:
    Marge change 899 from 3.0.x to trunk.
    Modified Paths:
    blazeds/trunk/modules/common/src/java/flex/messaging/LocalizedException.java
    blazeds/trunk/modules/common/src/java/flex/messaging/config/ConfigMap.java
    blazeds/trunk/modules/common/src/java/flex/messaging/config/SecurityConstraint.java
    blazeds/trunk/modules/core/src/java/flex/messaging/Destination.java
    blazeds/trunk/modules/core/src/java/flex/messaging/config/NetworkSettings.java
    blazeds/trunk/modules/core/src/java/flex/messaging/config/ServerSettings.java
    blazeds/trunk/modules/core/src/java/flex/messaging/config/ThrottleSettings.java
    blazeds/trunk/modules/core/src/java/flex/messaging/services/Service.java
    blazeds/trunk/modules/core/src/java/flex/messaging/services/ServiceAdapter.java
    blazeds/trunk/modules/core/src/java/flex/messaging/services/messaging/Subtopic.java
    blazeds/trunk/modules/core/src/java/flex/messaging/services/messaging/adapters/JMSAdapter .java
    blazeds/trunk/modules/core/src/java/flex/messaging/services/messaging/adapters/JMSConsume r.java
    blazeds/trunk/modules/core/src/java/flex/messaging/services/messaging/adapters/JMSProxy.j ava
    blazeds/trunk/modules/core/src/java/flex/messaging/services/messaging/adapters/JMSQueueCo nsumer.java
    blazeds/trunk/modules/core/src/java/flex/messaging/services/messaging/adapters/JMSSetting s.java
    blazeds/trunk/modules/core/src/java/flex/messaging/services/messaging/adapters/MessagingA dapter.java
    blazeds/trunk/modules/core/src/java/flex/messaging/services/messaging/adapters/MessagingS ecurityConstraintManager.java

  • Marge and Javafx

    Hi, sorry for my english.
    I have this code
    import java.lang.*;
    import javax.bluetooth.RemoteDevice;
    import javax.bluetooth.DeviceClass;
    import javax.bluetooth.DiscoveryAgent;
    import net.java.dev.marge.inquiry.DeviceDiscoverer;
    import net.java.dev.marge.inquiry.InquiryListener;
        class Model {
            var inquiryListener: InquiryListener;
            var foundDevices : RemoteDevice[];
            var inquiryBtnEnabled : Boolean;
            var cancelBtnEnabled : Boolean;
        var model = Model {
            var self: Self
            inquiryBtnEnabled : true
            cancelBtnEnabled : false
            var inquiryListener = new InquiryListener()
         inquiryListener : {
                         function deviceDiscovered(device :RemoteDevice  , deviceClass:DeviceClass ) {
                            insert device as last into self.foundDevices;
                        function inquiryCompleted(devices: RemoteDevice[]) {
                            self.inquiryBtnEnabled = true;
                            self.cancelBtnEnabled = false;
                        function inquiryError() {
                            self.foundDevices = null;
                            MessageDialog {
                                title: "Error"
                                message: "Inquiry Error"
                                visible: true
                            self.inquiryBtnEnabled = true;
                            self.cancelBtnEnabled = false;
        };What is wrong?
    Are there tutorial on javafx and bluetooth on-line with new syntax of JavaFx?
    Thanks in advance.

    Thanks for the reply.
    Now i have this problem.
    >
    When i compile with ........
    - javafxc mah.fx
    This is the result:
    mah.fx:22: warning: Function deviceDiscovered(javax.bluetooth.RemoteDevice,javax
    .bluetooth.DeviceClass) overrides another, it should be declared 'override'.
    function deviceDiscovered(device :RemoteDevice , deviceCla
    ss:DeviceClass ) {
    ^
    mah.fx:31: warning: Function inquiryError() overrides another, it should be decl
    ared 'override'.
    function inquiryError() {
    ^
    mah.fx:20: InquiryListener$anon1 is not abstract and does not override abstract
    method inquiryCompleted(javax.bluetooth.RemoteDevice[]) in net.java.dev.marge.in
    quiry.InquiryListener
    inquiryListener: InquiryListener
    ^
    1 error
    2 warnings
    >
    This the code
    import java.lang.*;
    import javax.bluetooth.RemoteDevice;
    import javax.bluetooth.DeviceClass;
    import javax.bluetooth.DiscoveryAgent;
    import net.java.dev.marge.inquiry.DeviceDiscoverer;
    import net.java.dev.marge.inquiry.InquiryListener;
        class Model {
            var inquiryListener: InquiryListener;
            var foundDevices : RemoteDevice[];
            var inquiryBtnEnabled : Boolean;
            var cancelBtnEnabled : Boolean;
        var model:Model = Model{
            inquiryBtnEnabled : true
            cancelBtnEnabled : false
            inquiryListener: InquiryListener
                         function deviceDiscovered(device :RemoteDevice  , deviceClass:DeviceClass ) {
                            insert device into model.foundDevices;
                        function inquiryCompleted(devices: RemoteDevice[]) {
                            model.inquiryBtnEnabled = true;
                            model.cancelBtnEnabled = false;
                        function inquiryError() {
                            model.foundDevices = null;
                            model.inquiryBtnEnabled = true;
                            model.cancelBtnEnabled = false;
        };What is the problem?

  • Marge container problem

    Hi all
    I use designer 10.1.2.0.2, when i try marge my container it throws this error message
    Message
    CDR-17038: No open activities were detected.
    Cause
    The .msg message file 'd:\oracle\product\oradev10g\repadm61\cdrus.msg' for product "CDRMSG61", utility "CDR" could not be found.
    The .msg message file 'd:\oracle\product\oradev10g\repadm61\cdrus.msg' for product "CDRMSG61", utility "CDR" could not be found.
    Action
    Thanks

    or this error - when uncheck automatick marge
    Message
    CDR-18009: Could not close a transaction.
    Cause
    The system was expectedly unable to close a transaction.
    Action
    If the error persists contact your support representative.
    Message
    RME-00011: Operation 'close' on ACTIVITY has failed
    Cause
    An API operation request has failed for some reason.
    Action
    Examine other reported errors for specific details.

  • How can i outline an object made of shapes without outlining the individual shapes or marging them

    How can i outline a visual shape made of a group of elements (vector shapes) without outlining the individual elements or margeing them togeather. I would normally go by marging them togeather but client requested they be unmaged

    Here is another way
    similar but a little different
    group the objects
    select the group in the appearance panel and go to Effects>Path>Outline Object
    then add a new stroke to the Group
    then select that stroke in the appearance panel and go to Effect>Pathfinder>Add
    the go to Effect>Path>offset path if you wish to give it some space around the object like such

  • Ben nieuw in PS. hoe kan ik van 2 of meer foto's 1 JPG maken zonder dat de witte marges tussen de fotos te zien is ?

    Ben nieuw in PS en wil meerdere foto's in 1 JPG combineren. Hoe kan ik dat doen en hoe krijg ik de
    witte marges tussen de foto's weg. Als ik het nu probeer viua importeren liggen de foto's op elkaar en
    kan ik alleen maar bij de bovenste foto. Alvast bedankt voor uw suggesties !!

    Dear Mr Mack,
    Thanks for your help. I found it as you can see. The article you gave me was not exactly
    what I was looking for (background change), but gave me a lot of other articles that I can use.
    Thanks again
    Kind regards
    Paula Brouwer

  • Pas de possibilité de pages opposées ??? Pratique lorsqu'on fait un livre. Les marges intérieures et extérieures ne sont pas les mêmes sur les pages paires et les pages impaires.... Gros défaut de cette nouvelle mise à jour.

    Bonsoir à tous,
    Je viens de télécharger la nouvelle version de Pages, soit la version 5.0.
    Je cherche en vain la fonction "Pages opposées", qui permet de mettre en page la disposition d'un livre dont les marges intérieures et extérieures diffèrent.
    En effet, les marges droites et gauches s'appliquent sur toutes les pages et l'on en peut pas différencier les pages paires et impaires pour les marges.
    C'est un problème pour moi.
    Pourquoi supprimer une telle fonction ?
    Si je ne trouve pas de solution, il me faudra repasser sur la version antérieure.
    De plus, la mise à jour modifie les documents, effacement des commentaires, de certains tableaux, de certaines photos !!!
    Dur, dur quand on a passé des heures et des heures à travailler un document !!!
    Extrèmement déçue par cette mise à jour....
    Si quelqu'un avait une solution pour les pages opposées, je suis preneuse.
    Merci à tous.
    Bonne soirée.
    Charlie

    Ouais, c'est dingue. On doit utiliser la version antérieure de Pages. Pages 5 est la m(e)rde.

  • Quelles sont les marges que vous utilisez en général pour DPS? Vous laissez 40px?

    Bonjour,
    Pour Ipad air, retina vous utilisez des marges de combien de pixel? Je ne retrouve plus la page Adobe en question.
    Merci

    It depends only on your own design. Common sense margins are anything between 24 and 64 px. I use bigger top margin often, just to accomodate topbar when it appears.
    Tomek

  • Problème de marges - Muse

    Bonjour,
    Je débute avec le très prometteur Muse de la suite Adobe et je suis confronté à un problème plutôt déroutant. J'ai défini un format standard dans lequel j'ai organisé tous mes éléments, mais lors de l'export, un décalage se fait sur la droite, une vilaine marge est générée et je ne sais pas comment résoudre ce drame.
    Merci pour l'aide !

    Please check the changes that you made before exporting the site and provide site url for investigation.
    Thanks,
    Sanjit

  • Bonjour je n'arrive pas a régler la marge d'impression ( le bas de ma feuille et coupé).

    Si quelqu'un voit de quoi je parle merci de m'en informer

    Some information is needed what printer what kind of paper?
    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • Online Manuals for Vintage Gear-Link Me Marge...

    this is not about logic (which i use a lot) but a more general enquiry related to an audio project i am working on. i have posted here as this is about as close as it gets to professional audio w apple forums and so i thought there might be some overlap.
    i am looking to download an owner's manual for an old sony reel-to-reel which we are using as a prop in a filmshoot this weedend and we need it to operate. it has been serviced and is in working order.
    on the unit itself is says, "sony sterecorder".
    it also says "stereo center 230"
    it was made in the late 60’s.
    i've had no trouble finding free manual downloads on other vintage gear but am having trouble with this one.
    can anybody do me a solid and link me up?
    thanks folks!

    Hi Agent3012, I think you left off a couple of things:
    I don't think that the xbox service will compare with an actual  Blu-ray movie will it? Blu-ray delivers 1080p HD and also will support 7.1 digital surround sound. Does the xbox download movie? Also, PS2 will support standard DVD and will automatically upgrade its picture to HD too. I'll take a look at Bestbuy.com, but I think stand alone Blu-ray players sell for a couple hundred $$, right? So there's a big bonus it you're a gamer AND like HD movies.
    All PS3's come with built in wi-fi. To add wi-fi to an xbox, it costs about $100 to buy a accessory, right?
    What % of xbox's have a rrod? I read over 50%. How long does it take to get a replacement?
    Just confirming; to play any games on line, it is free with the PlayStation 3. To play games on-line with xbox, you need to pay $50 per year, correct?
    PS3 DS3 controllers come built with rechargeable, lithium batteries. To get a recharge pack for an xbox controller, you need to buy a $25 kit, right? So, you don't need to buy any batteries at all for PS3.
    Blu-ray games for PS3 can have up to 50GB of data. The biggest a game can be on xbox is 9GB right? So, many games are only possible on PS3.
    With remote play, you can access your PS3 with your PSP, and even play games! That's only possible on PlayStation 3 too!
    Just trying to tell this story from the value, reliability, great games, and real HD side. I don't think it's hard to check most of the boxes on the PS3 column.

  • Poids d'un folio - Quelle marge d'optimisation ?

    Bonjour à tous,
    Je travaille actuellement sur un projet de folio comportant plusieurs sections. Après quelques tests je parviens à quelque chose qui me plait mais le folio d'UNE section pèse 14 Mo ! Le folio d'UNE section compte 8 planches. Il y a quelques images mais toutes ont été optimisées le plus possible (les sources pèsent 2,5 Mo) et il y a 2 diapos.
    J'avais initialement en tête de constituer un folio comprenant une dizaine de ces sections, mais quand je vois le poids d'une section je suis refroidi. Y a-til des astuces pour optimiser le poids de ce folio (autre que d'agir sur les images, ou de jouer sur les paramètres d'exportation à la création du folio) ? Une fois déployé (avec DPS) le folio pèsera-t-il le même poids qu'aujourd'hui dans le viewer Adobe ou y a-t-il des traitements permettant de compresser dans el processus de déploiement ?
    8 planches avec quelques images = 14 Mo : pour un outils permettant de déployer sur terminaux mobiles, je me dis que j'ai raté quelques chose...
    Merci de votre aide !

    Cela fait un certain temps que je ne me suis pas penché sur la question du poids des folios, donc en parallèle de ce message, je ferai quelques vérifications.
    Premièrement, au niveau des enregistrements, lorsque vous préparez votre folio quel est votre format de prédilection ? jpg ? png ? ou pdf ?
    Depuis la version v26, les Viewer Android et bureau (pour l'aperçu depuis inDesign) sont capables d'afficher les folios pdf. Si vous cherchez le meilleur compromis poids/qualité, c'est par là que vous pouvez vous diriger.
    J'en ai profité pour rédiger tout un article de blog sur les poids d'export en fonction du format (PDF, PNG, JPG Min et Max), avec des chiffres, ce qui vous permettra d'estimer plus facilement pour votre cas.
    Bonne lecture.

  • Data marge

    Hello.
    For example i have table.
    NR name favorite_color
    1 John Black
    2 John Green
    3 Arthur Gray
    4 Mike White
    Is it possible to select data and get result?
    name favorite_color
    John Black Green
    Arthur Gray
    Mike white
    Thanks.
    Solved by excell povot table...
    Edited by: user11974179 on 2011.18.3 01:46
    Edited by: user11974179 on 2011.18.3 02:28

    One of the ways would be:
    with table1 as
    select 1 NR, 'John' name, 'Black' fav_color  from dual
    union
    select 2,  'John', 'Green' from dual
    union
    select 3,  'Arthur', 'Gray' from dual
    union
    select 4,  'Mike', 'White' from dual
    SELECT name,
           LTRIM(MAX(SYS_CONNECT_BY_PATH(fav_color,' '))
           KEEP (DENSE_RANK LAST ORDER BY curr),',') AS fav_color
    FROM   (SELECT name,
                   fav_color,
                   ROW_NUMBER() OVER (PARTITION BY name ORDER BY fav_color) AS curr,
                   ROW_NUMBER() OVER (PARTITION BY name ORDER BY fav_color) -1 AS prev
            FROM  table1)
    GROUP BY name
    CONNECT BY prev = PRIOR curr AND name = PRIOR name
    START WITH curr = 1
    Output:
    "NAME"     "FAV_COLOR"
    "Arthur"     " Gray"
    "John"     " Black Green"
    "Mike"     " White"

Maybe you are looking for

  • On certain pages, a big circle with an arrow inside it takes the foreground in the bottom left corner, and I can't get rid of it.

    This image is something new on my screen, probably since the last Fx update or so. I think this big-circle-with-an-arrow-inside may be a sign indicating that I need to download something, or that something is available for download. I see it on sites

  • Adobe Bridge Dilema

    Hi, I am not sure if I am in corret forum, I am trying to download Adobe Photoshop for a 30 day trial.  When I start the installation the error screen comes up and tells me to close the Adobe Bridge application that is running.  I don't have the brid

  • Installing itunes on my pc using windows 7 makes the disc drives disappear

    does anyone have a fix for this? I'm using a pc with windows 7, used to be able to uninstall itunes and the drives would reappear, now that doesn't work so I have no disc drives. Have tried everything (my computer friend has, for me) including a new

  • Logs on if ethernet, but not airport

    I just reinstalled OS 10.4.11 on a MacBook and did all updates (which is probably my problem). Computer is setup to connect with Open Directory to the network. If I login with the computer connected to the ethernet it logs in to my network account -

  • All new files have 644 (group read only) permissions!?

    Why do all new files created through AFP have rw-r--r-- (644) permissions? I haven't figured out any way to change it so the group can read and write the new files, without manually chmoding them to something useful. OS X Server 10.3 and 10.4 didn't