Dbms_xmlsave for update

Hi,
I'm using dbms_xmlsave for updating columns in a table with data in an XML file.
This works only when the tags in XML file exact match the columnnames in the table.
How can i do the same when the tagnames differ from the columnnames?
Regards,
Joshua

I have solved the problem by making sure that the tags in the xml file match the columns in the table.
But already i have another question:
Suppose the dbms_xmlsave can't find the row to be updated?
Eg. the employee id form the xml file doesn't exist in the employee table.
Is there an errorcode given?
Thanx

Similar Messages

  • Error message: "playlists selected for updating no longer exist"

    I tried to update my ipod nano and I guess I had deleted a playlist, but since then, I have not been able to update. Every time I try, I get the following message:
    "Cannot be updated because all of the playlists selected for updating no longer exist."
    I haven't been able to highlight which playlists are selected to begin with.
    I read through the manual and thought that maybe rebooting the whole system might work. So I deleted Itunes from my computer and re-installed.
    Then I tried re-setting my ipod. So now I have nothing on my ipod.
    I also deleted everything from my library, thinking it might help to start from scratch. Nothing has worked.
    How do I "select" and "unselect" playlists so I can get up and running again?

    Here you go.
    http://discussions.apple.com/thread.jspa?messageID=607312&#607312

  • Why does my app store use a different account for downloading and another for updating apps?

    My app store used my own account for downloading and my sister's for updating, and it keeps telling me to reset my account. I already did that the other few times it told me to do that!

    Have you restored your device from your sister's backup?

  • Lost music on ipod because "playlists selected for updating no longer exist

    Not sure what I've done. I recently downloaded newer version of itunes. Then when synching, I had too much music in my library for the ipod to handle so it told me about doing the smart playlist. I erased a couple of playlists on the itunes menu I no longer wanted and then when I went to synch, this error came up "songs on the ipod cannot be updated because all of the playlists selected for updating no longer exist."
    Please help.....

    Check this out.
    iPod cannot sync because one or more playlist....

  • Playlists for updating no longer exist

    i am a novice...i deleted my ipod nano playlist from source list...i also updated yesterday...no i keep getting a screen when i connect my ipod to computer that reads, "songs on the ipod cannot be updated because all of the playlists for updating no longer exist. but all songs remain in library....Help!

    You will find this user tip useful for resolving the missing playlist issue: Hudgie - iPod cannot sync because one or more playlists are missing

  • "songs..can't be updated b/c all the playlists for updating no longer exist

    My Ipod was "off power" for so long that it "forgot" all its music. Now when I plug it in to my base computer, rather then synching it says "songs on the ipod "name" cannot be updated because all the playlists for updating no longer exist"

    Hey.
    See if this can help;
    http://discussions.apple.com/thread.jspa?threadID=121728&tstart=150
    Cheers!
    -Bryan

  • "All of the Playlists Selected for Updating No Longer Exist"

    My family has 2 ipod shuffles. After purchasing a Nano recently, I inserted the cd that came with it. Apparently the existing iTunes software was removed and reinstalled. At any rate, the library still shows all the original songs, but when the Nano is plugged in, iTunes immediately gives a prompt stating "Songs on the iPod *** cannot be updated because all of the playlists selected for updating no longer exist." The library is there, the playlists that were there are there, and I can play the songs on my cpu. Is there anything I can do besides completely uninstalling everything and starting over?
    iPod Nano   Windows XP Pro  

    This user tip should help you sort out your missing playlist problem: Hudgie - iPod cannot sync because one or more playlists are missing

  • "All of the playlists for updating no longer exist"???!!

    I created a few new playlists and deleted an old one in iTunes, and then when I plugged in my mini to update I get the message:
    Songs on the iPod “Kellee's iPod” cannot be updated because all of the playlists for updating no longer exist"
    There are no songs in my mini after this msg. I reset it, tried to update again, but got the same msg. Please help!!

    Hi Kellee!
    Why do people delete playlists?? Seems like you have the same problem someone I tried to help has. She got the exact same error message when she deleted a playlist. If I were you I would have shifted some songs around, changed the name of the playlist to something else but NOT deleted the playlist. I don't think you can get the same playlist back once you delete it. Question is why is your iPod not recognizing your new playlists and it's requesting to update the playlist you already deleted?? I'm afraid I can't help you but maybe someone else can. I just wanted to say this.

  • "playlist for updating no longer exists!"

    Recently my ipod reached its full capacity so I could not add anymore songs onto my ipod, instead it created a seperate playlist of songs which were most played etc. However I accidently deleted that playlist and now my ipod is blank and won't let me put songs on it
    the message reads : "songs on the ipod cannot be updated because all of the playlists selected for updating no longer exist"
    does anyone know how i could fix this problem?
    any help would be much appreciated
    thanks!

    Open iTunes prefs-> iPod and set it to Automatically update selected playlists and select a new playlist.

  • "Playlists selected for updating no longer exist"?!

    everytime i plug my ipod mini into the computer, a pop up appears saying that the playlists selected for updating no longer exist!!! it's done this before, so i completely restored the setting and made a whole new library. now it's doing it again. i have all the playlists and songs on my computer in a folder. all the songs that were on my ipod, got deleted when i plugged it into the computer. so my ipod is blank, but i have the songs in my library still. they just wont upload. any help would be greatly appreciated....

    Check this out.
    iPod cannot sync because one or more playlist....

  • ORA-01002-Error in Select ... for update

    I would like to insert CLOB in a table (VP_EVENTS) with a primary key (eventid) with the following code:
    String content = "AAAAAAAAAAAAABBBBBBBBBBXXX";
    PreparedStatement cs = this.con.prepareStatement("INSERT INTO vp_events (eventid,term,participant)
    VALUES (?,?,empty_clob())");
    //Register IN-Parameter
    cs.setInt(1, 1);
    cs.setInt(2, 1);
    cs.setTimestamp(3, new java.sql.Timestamp( System.currentTimeMillis() ));
    //Execute statement
    cs.execute();
    cs.close();
    Statement stmt = con.createStatement();
    ResultSet clobLocatorSet = stmt.executeQuery( "SELECT PARTICIPANT FROM VP_EVENTS WHERE EVENTID=1 FOR UPDATE");
    // Get the CLOB-locator
    if (clobLocatorSet.next())
    oracle.sql.CLOB clob =
    ((oracle.jdbc.driver.OracleResultSet)
    clobLocatorSet).getCLOB(1);
    // Write CLOB-Data
    // The first parameter to plsql_write, is // the offset from which to start
    // writing, and the second parameter is the // data to be written.
    // plsql_length(), returns the length of // the data in the CLOB column
    countCLOB = clob.plsql_write(
    0,content.toCharArray());
    At the execution-point of the "Select for Update"-statement the oracle thin driver throws the Error "Fetch out of sequence ORA-01002".
    What's wrong?

    Connection conn = DriverManager.getConnection ("jdbc racle:thin:@myhost:1521:ORCL","scott", "tiger");
    conn.setAutoCommit(false);
    Statement stmt = conn.createStatement ();
    null

  • Unable to Check for Update on OS 5.1

    My iPad 2 will not update its software over the air and comes up with the message Unable to Check for Update.  I have tried updating via iTunes 10.6 and it just sits there trying to contact the update server.  I have also reset the iPad and restored from backup.  Exactly the same problem!
    Its nothing to do with the network as i get exactly the same problem at work as i do at home.  My iPhone 4S updated to 5.1 without any problem.  However my iPad just does not want to know.
    Please help!

    Correction. I started the update on my iPhone and my wife's iPad. However, they never finished. Each one returned an error message stating that the "Software Update Failed. An error occurred downloading iOS 5.1." I can't even get my ipad2 to get that far. It returns an error when trying to contact the server.

  • Adobe creative cloud is asking for a serial number for updates - where do I get this from?

    Adobe Creative cloud is asking for a serial number for updates - where do I get this from
    we have recently Bought 5 x 1 year licences and been using this a month
    Michael

    Hi Mick,
    Please refer to the below link.
    http://helpx.adobe.com/creative-cloud/kb/ccm-prompt-serial-number.html
    Thanks

  • No prompt to update when Flash Player Settings Manager is set to check for updates automatically

    My understading of http://forums.adobe.com/message/3562892#3562892 (March 2011) is that when an outdated version of the Player is used on Windows, the prompt to update should occur after the next restart of the operating system.
    So, when http://www.adobe.com/software/flash/about/ in Safari for Windows shows an outdated version 10.x of the Player:
    I restart Windows
    I log on
    I wait a few minutes.
    Problem
    Usually, no matter how long I wait, there is no prompt to update; Flash Player Settings Manager continues to show an outdated plug-in alongside a greater version of the ActiveX item.
    I see this problem with multiple computers running Windows XP and Windows 7.
    Any suggestions?

    Flash Player checks for updates every 7 days. The NCP doesn’t change this.  Where the user in that post is getting confused is that only after Flash Player detected an update (on average 3.5 days after a new version is released), the dialog will appear after a restart.
    Chris

  • HT3576 Ok so i have this iPod touch (3rd gen) and i'm trying to update it through iTunes and when i click  check for update it keeps saying this version of iPod software (2.2.1) is your current version. what do i do? how do i update it?

    Ok so i have this iPod touch (3rd gen) and i'm trying to update it through iTunes and when i click  check for update it keeps saying this version of iPod software (2.2.1) is your current version. what do i do? how do i update it?

    You have a 1st generation iPod Touch. It can not be upgraded beyond iOS 3.1.3, it is available at the link below.
    http://support.apple.com/kb/HT2052

Maybe you are looking for

  • Moving my iTunes music from an external hard drive to my laptop

    I have my iTunes music stored on an external hard drive.  I now want to put  them back to my laptop but find this impossible as all the music does not copy.  CAn anyone help?

  • Dent in MacBook Pro

    So apparently my boyfriend dropped my MacBook Pro and it put a dent in it. He wasn't aware when it happened and I didn't go to use it until today, when I noticed it. The laptop was open when it happened, so the lid is fine. The dent looks sort of lik

  • Problem since reset to factory setting

    last day I was reset my mac to factory setting, bur after restart instruction I lost information coz display just viewed "?". what must can i do to continiu the action ? after internet connected, display viewed "apple.com/support-2002F", what it mean

  • Document Composer ES 2.5: PDF Plugin Problem?

    Hi, I got a screenshot from a colleague of me showing his UI of the Document Composer. I have never seen such a behaviour of the PDF plugin part It looks like that the plugin is not loaded correctly, but I have never seen such a "cross" for it. Any i

  • Jdk1.5's bug

    It's very slow when eclipse connect CVS using jdk1.5(RC and FCS), It's same when client connect Database. Is this bug?