Help with an update with join (works in access)

This is my working query in ms access...
UPDATE Caxnode AS A INNER JOIN Caxnode AS B ON A.node_alias = B.node_alias SET A.partition_Type = 'LDOM', A.node_mode = 'LOGICAL', A.host_id = b.host_id, A.num_of_proc = b.num_of_proc WHERE (((A.node_mode)='virtual' Or (A.node_mode)='regular') AND ((B.partition_Type)='LDOM'));
This doesn't work in oracle, I googled and read that update doesnt work with inner join in oracle..
can someone please help me translate this query to work on oracle?
Thanks!
-nikhil.

thanks for your reply. however, im a little confused . i want to update the table caxnode for a particular node_alias if the same table has the SAME node_alias defined as partition_Type=ldom
for eg..
my table is as follows
id node_alias host_id node_mode partition_type num_procs
1 abc abc virtual null 2
2 abc xyz logical LDOM 4
3 def def virtual null 2
4 def ppp logical LDOM 8
5 abc abc regular null 3
So those that are ldoms are marked ldom in partition_type, those that are not recognised as ldoms are marked null in partition_type. LDOM's are logical in node_mode, others are either virtual or regular in node_mode.
Now since there are some old entries that are marked regular/virtual and NULL but are actually LDOMs, I need to go through the table and mark those as LDOM's which have same node_alias marked as LDOM later on.
In the table above, abc is marked as LDOM in row 2, so row 1 and 5 should reflect that. the host id should change to host_id in row 2 because the same alias is defined as ldom in row 2..
Same with def.. host_id for def should change to host_id thats in row 4 because def is also defined as ldom in row 4..
The table should look like this
id alias host_id node_type num_procs
1 abc xyz LDOM 4
2 abc xyz LDOM 4
3 def ppp LDOM 8
4 def ppp LDOM 8
5 abc xyz LDOM 4

Similar Messages

  • Hello. I've Apple TV 3rd gen and MacBook Pro 2013 all with latest updates. AirPlay works fine till I don't start streaming videos from YouTube. After that AirPlay icon from MacBook menu bar simply disappears. Could some help. I'm using 2 Mbps Internet

    Hello. I've Apple TV 3rd gen and MacBook Pro 2013 all with latest updates. AirPlay works fine till I don't start streaming videos from YouTube. After that AirPlay icon from MacBook menu bar simply disappears. Could some help. I'm using 2 Mbps internet connection.

    Same issue here- I can airplay my amazon prime library just fine from my iphone 5 but on my macbook- (mavericks, 15 inch 2013 retina with quad core i7, nvidia 650 M and SSD) it just sputters and lags.
    I have noticed web video is considerably worse than local content, giving me pauses of up to 2 or 3 seconds in which video stops but audio continues in the amazon player. Youku video, however, seems relatively stable. Our subscription speed is 25 mbps, so that should be plenty to stream SD video from Amazon and doesn't account for why it would be nice and stable from the iphone, but not the mbp.
    Playing light, locally hosted steam sidescrollers  like Limbo is better but gives periodic drops in framerate on the Tv. when mirroring the framerate remains steady on the MBP screen.
    Games airplayed from my iphone seem relatively stable, though with a noticably lower framerate on the TV than on the phone.
    It seems these issues have abated considerably since yesterday's Apple TV update, but are still curious nonetheless and I'm not sure that the update yesterday was specifically meant to address those issues or if I'm just getting a time with less network interference now.
    Comcast recently installed a new router/modem/phone combo, replacing our old separate modem and router setup. I'm going to test if putting the network on a different channel helps.

  • Recent problems with Windows Update with Thinkpad 8

    Since last week I've started having problems with Windows Update on ny Thinkpad 8. It seems to be related with some recent update. At first I received different error codes. As I don't have many programs on my tablet, I refreshed it and set up Windows and Office again. I ran WU, and after the first update (with 100+ updates) WU was working ok. However, after a second set of updates (probably the most recent) I've started receiving error messages again. Most recently I am receiving code 80070002, and the error seems to affect only the installation of Windows Defender definitions through WU -- other WU updates install correctly, and most of the time I can install Windows Defender updates through Windows Defender. I have already tried the Windows Update Diagnostic tool, but the problem persists.

    thanks farby

  • I love new updates; I read the information, but missed that Dashland, as with last update, does not work. Can't live without it. I've updated. Now, what to do?

    Last update clearly informed me that Dashlane did not work with the update. I read the information this morning before downloading and did not see that once again, Dashlane will not work. I must have access to my passwords. Do I have any recourse other than re-installing the last version of Firefox? Or, using Safari in the interim so I can use iCloud to reveal passwords?

    See this Dashlane support page - http://support.dashlane.com/customer/portal/articles/390903

  • HT201413 I have been trying to restore my iphone 4s for 5 hours, please help! The update wouldn't work and now when I connect the iphone it says I have to resore in order to start using itunes but I am getting an error msg. HELP!

    I am trying to update a 4s. The update did not work for some reason. Now I need to restore the iPhone. When I connect the usb to the computer and phone it says I need to restore. So, I click to restore. It starts extracting the software. But I am continually getting the same error message that it cannot complete for unknown error. I have been working on this for 5 and a half hours. I'm tired, mu husband needs his phone and apple support is a joke and of course I can't find any answers anywhere. Please help!

    Hi MB2751,
    As an iPhone user myself, I know it must be very much a problem to have the phone out of service because of an error such as you are seeing. Let's see if we can get you back up and running.
    I would suggest that you troubleshoot using the steps in this article - 
    If you can't update or restore your iPhone, iPad, or iPod touch
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Need help with the update queries - joining three tables -

    We have three tables shown below, each with millions of rows;
    And need some updates in here;
    T_CHECK->TOTAL_AMT_PAID should be equal to
    aim00.t_chck_clm_xref->amt_paid + aim01.t_chck_clm_xref->amt_paid;
    Some CHECK_SAK values exist in aim00.t_chck_clm_xref and some exist in aim01.t_chck_clm_xref;
    We tried to update using the queries within PL/SQL shown below:
    Is there a way to make these more effecient?
    SQL> desc aim.t_check;
    Name Null? Type
    CHECK_SAK NOT NULL NUMBER(9)
    TOTAL_AMT_PAID NOT NULL NUMBER(11,2)
    DTE_ISSUE NOT NULL NUMBER(8)
    SQL> desc aim00.t_chck_clm_xref
    Name Null? Type
    CHECK_SAK NOT NULL NUMBER(9)
    AMT_PAID NOT NULL NUMBER(10,2)
    SQL> desc aim01.t_chck_clm_xref
    Name Null? Type
    CHECK_SAK NOT NULL NUMBER(9)
    AMT_PAID NOT NULL NUMBER(10,2)
    create or replace PROCEDURE CHECKSUPDATE IS
    cursor my_cursor is
    select /*+ DRIVING_SITE(t_check) INDEX(t_check) */
    tot, mid, aim.t_check.total_amt_paid from
    (select sum(aim01.t_chck_clm_xref.amt_paid) tot,
    aim01.t_chck_clm_xref.check_sak mid from aim01.t_chck_clm_xref
    where
    not exists (select 'x' from aim00.t_chck_clm_xref
    where aim01.t_chck_clm_xref.check_sak = aim00.t_chck_clm_xref.check_sak
    group by aim01.t_chck_clm_xref.check_sak) TABLE1, aim.t_check
    where aim.t_check.check_sak = table1.mid
    and aim.t_check.total_amt_paid <> tot;
    my_count NUMBER;
    BEGIN
    my_count:=0;
    for my_pos in my_cursor loop
    update aim.t_check a set total_amt_paid=my_pos.tot
    where a.check_sak=my_pos.mid;
    my_count:=my_count+1;
    if (mod(my_count,1000)=0) THEN
    commit;
    end if;
    end loop;
    commit;
    END CHECKSUPDATE;

    >
    SQL> desc t_check;
    Name Null? Type
    CHECK_SAK           NUMBER(9)
    TOTAL_AMT_PAID NUMBER(11,2)
    DTE_ISSUE NUMBER(8)
    SQL> desc t_chck_clm_xref
    Name Null? Type
    CHECK_SAK      NUMBER(9)
    AMT_PAID NUMBER(10,2)
    SQL> desc t_test
    Name Null? Type
    CHECK_SAK NUMBER(9)
    AMT_PAID NUMBER(10,2)
    select check_sak, sum(amt_paid)
    from (
      select check_sak, amt_paid from t_chck_clm_xref
      union all
      select check_sak, amt_paid from t_test
    group by check_sak;and use this query in an UPDATE statement or a MERGE statement, as Tubby suggested, against the T_CHECK table.
    isotope

  • Help understanding windows updates with SCCM 2012 R2

    Hello all, 
    I am fairly new to SCCM in general and would like to know if I am doing things right with regard to Windows updates.  
    My setup:
    I have one Windows 7 update group that has all updates as of about 3 weeks ago.  That package is deployed to a win7 collection of machines.
    I also have an ADR rule to create a new package containing new Windows 7 updates (within the past year) every month and deploy to the same collection.  (I chose to create a new package due to the 1000 item limit in a package)
    Will this setup work or am I doing something wrong here?  I really want to know what best practices are related to configuring update packages/adr for windows updates.

    More info:
    Best Practices for Software Updates
    http://social.technet.microsoft.com/wiki/contents/articles/11215.system-center-2012-configuration-manager-best-practices.aspx#Best_Practices_for_Software_Updates
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • What's the deal with FP update doesn't work!

    What's up with Update FP player?

    Definitely not PEBKAC. Using either Xcode or the ICU, and clearly the console logs of my device show that something odd is happenning. Roughly same time frame, about 3 weeks ago, I began to notice long delays and dropped iMessages.  Odd, since the service had worked brilliantly up until recently.
    Location: Vancouver
    iPhone 4
    3rd party router, set to Apples specifications for iOS devices.
    The oddest thing is that it makes no difference if I turn on send by SMS or not... and it should. 
    Issue confirmed by associate in Toronto.
    Conversations changing, rearranging, I'm told that messages did not go through, but screenshots from other party show they have recieved them... very puzzling.

  • Access 2000 with VBA code doesn't work in Access 2013

    I have a database that was created in Access 2000 with lots of VBA code to pull data from SQL for reports. When I try to run a report in 2013, I get 'file not found".  When I go into debug, it appears the forms for the reports are not being found. 
    How can I fix this?

    Good Morning MariS2,
    Did you verify the change in the connection type?
    Did you check all your references which are changed for the new version of Access?
    Just takes a click to give thanks for a helpful post or answer.
    Please vote “Helpful” or Mark as “Answer” as appropriate.
    Chris Ward
    Microsoft Community Contributor 2012

  • Help! iPod won't work - started with iPod updater

    Hi,
    I tried updating my iPod nano today as suggested. It installed and everything fine. But when I tried updating it, it gave me an error and I couldn't use my iPod. So I tried restoring it with the updater.
    Nothing worked. The "Do not disconnect" sign is up all this while. So I try restarting my computer. The DNDisconnect sign is still on but now.. nothing works. I can't do anything with it and iTunes does not even recognize it. I don't even have the iPod sign on My Computer. So I disconnect it, against my better judgement. And it gives me the exclamation sign and tells me to go to the Apple Support site.
    I do.. and I follow the 5 Rs. I start by resetting it. This brings me into the Disk Mode which is where I'm stuck at now. It won't exit even when I try restarting it. I've reinstalled the updater AND iTunes and nothing seems to work still. Everytime I connect it to try to restore it with the updater, it says Service error.
    Help.......?

    If you get a message with iPod Service Error please see if either of these two links are helpful:
    iPod for Windows: Fast user switching in Windows XP is not supported
    iPod appears in Windows Explorer but does not appear in iTunes
    Regards
    Colin R.

  • Can someone help please - problems with ios7 update

    Hi can someone help please since updating with ios7 on my iphone 5 i message will not work and I have an extermely poor battery life I can watch it going down.

    Hi can someone help please since updating with ios7 on my iphone 5 i message will not work and I have an extermely poor battery life I can watch it going down.

  • Problems with FlashPlayer Update.

    Problems with FlashPlayer Update.
    after download, install begins, but when the progress bar ends a typical Windows error message displays showing :
    (literal translate from spanish):
    " is not found the enter point of procedure SetDIIDirectoryW into the dinamic Links Library KERNELL32.dll "
    ihave:  windows32, XP +  FlashPlayer Ver: 11.1.102.55 + MozilaFirefox10.0
    flash works ok, but i can't complete a new update since  Version: 11.1.102.55
    please help me, Thanks

    Microsoft Windows XP Professional    Version    5.1.2600  Compilacion 2600
    (looks like old windows98 / 2000 style but it's XP (i choose the old look in display preferences)
    i think it's Service Pack 1  beacause there were problems with SP2 updates with some programs, so this version works Ok with all my software... until now.  i Know there's a SP3 and it is an obsolate OS but i like it and works well in this PC.
    Do you think that it's the problem?  i must install SP3?

  • Problems with gunnerz update

    "Waiting for ICloud" after my Gunnerz update. Any solutions from anyone. Supposedly there's an update coming but I won't hold my breath?

    Microsoft Windows XP Professional    Version    5.1.2600  Compilacion 2600
    (looks like old windows98 / 2000 style but it's XP (i choose the old look in display preferences)
    i think it's Service Pack 1  beacause there were problems with SP2 updates with some programs, so this version works Ok with all my software... until now.  i Know there's a SP3 and it is an obsolate OS but i like it and works well in this PC.
    Do you think that it's the problem?  i must install SP3?

  • Characteristics - Master data Tab- infosource with direct update

    Dear Experts,
    Please explain me in Laymans Language as i am new to BI (but am an ABAP consultant).
    In Info Object Characteristics,  Master data Tab there is infosource with direct update with an application Component.
    1. Now my doubt is,  when i specify the Application Component, this infosource would appear under the application component in Modeling->Infosources.
    Then on this infosource i would right click and create the info pakage and then data transfer process.
    is it correct?
    2. Suppose for this characteristic if i dont specify the infosource with direct update  then it wont appear in the infosource, so how can i load data in this case?
    Regards
    BI Learner

    Hi,
    Using an InfoSource with direct updating, master data (characteristics with attributes, texts, or hierarchies) of an InfoObject can be updated directly (without update rules, only using transfer rules) into the master data table. To do this you must assign it an application component. The system displays the characteristic in the InfoSource tree in the Data Warehousing Workbench. You can assign DataSources and source systems to the characteristic from there. You can then also load master data, texts, and hierarchies for the characteristic.
    You cannot use an InfoObject as an InfoSource with direct updating if:
    i. The characteristic you want to modify is characteristic 0SOURSYSTEM (source system ID).
    ii.  The characteristic has neither master data nor texts nor hierarchies. It is therefore impossible to load data for the characteristic.
    iii.  The characteristic that you want to modify turns out not to be a characteristic, but a unit or a key figure.
    To generate an export DataSource for a characteristic, the characteristic must also be an InfoSource with direct updating.
    1. *Now my doubt is, when i specify the Application Component, this infosource would appear under the application component in Modeling->Infosources.
    Then on this infosource i would right click and create the info pakage and then data transfer process.*
    The characteristic will be available in info source tree, you can assign a datasource->assignsource system->create package->load data.
    2. Suppose for this characteristic if i dont specify the infosource with direct update then it wont appear in the infosource, so how can i load data in this case?
    For a characteristic If you dont specify 'InfoSources with Direct Updating' then it wont appear in infosource tree.

  • Help needed I updated my ipad2 with iOS5 but few of my dashbaords are not working now can any one let me know how to downgrade the OS

    Help needed I updated my ipad2 with iOS5 but few of my dashbaords (HTML5) are not working now ,can any one let me know how to downgrade the OS as we have a meeting coming up .. its urgent

    Downgrading the iOS is not supported. If you are using Safari this try clearing its cache via Settings > Safari.
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

Maybe you are looking for

  • Missing Information in Elements 12

    In prior versions of Elements, when a file was opened in the organizer, at the bottom of the screen it showed all albums in which the file could be found.  Is that feature not available in Elements 12?

  • Import Manager Question

    Hi Experts, Here is my current situation: I am importing roughly 25,000 vendor master records into an empty repository (with XML's). There are a few tuples (Company Code / Purchase Org) that often times one or the other will NOT have any information

  • Sub reports not included in CharacterSeparatedValues export

    Our application allows users to export a report that includes several sub reports to any of the export formats that the .NET API exposes.  The export works in every format except CharacterSeparatedValues.  In this format the sub reports are not inclu

  • Sales Order Credit Status Block with Schedule Line ATP Confirmed Quantity

    I would like to keep the Credit Status Block on a Sales Order when it is created and over the credit limit and at the same time be able to Confirm the Order Quantity (if inventory is available) on the Schedule Line.  Has anyone done this?  I'm using

  • How can my website searchable by search engine?

    Hi all My website is running with Dynamic DNS and I would like to know how can my website be searchable by search engines like Yahoo, Google? Do I need to register my site with them or it is not possbile with DDNS websites? Also, I have seen website