Multiple Raw updation

Hi,
I am using oracle 8i Database. I have two tables related to CUSTOMER. (Say CUST_A, CUST_RA).
Both having common column like customer_number, Customer_Name. Both table customer_numbers are same.
But some customer_names are different.
So I want to Update CUST_A with the same Customer_name of CUST_RA. ie I need to update Many raw with single query. Is there any option for this problem in oracle8i. Please send a soluton.
With regards Naseer.

   UPDATE CUST_A  a
         SET  (col1, col2, col3)   =   ( SELECT  val1, val2, val3
                                 FROM CUST_RA  ra
                               WHERE a.matching_column = ra.mathcing_column
        WHERE    a.extra_column = some_condition;
     UPDATE ( select b.col1, b.col2, b.col3, e.val1, e.val2, e.val3
                     from CUST_A b,  CUST_RA  e
                   where e.matching_column = b.matching_column
         ) temp
        set (col1, col2, col3) = (val1, val2, val3);If you are lucky enough to have Oracle 9i, then you can try MERGE statements....

Similar Messages

  • Not opening multiple RAW files

    If i open a Raw file in Bridge, it opens up perfectly. Also my jpegs and tiff open in RAW, so no problem there. The problem is, that I cannot open multiple Raw files from Bridge into Raw with the option "open in Camera Raw" So the shortcut cmd+R ( I am on a mac) does not work. It says that Raw has to be opened at least once. I have been using Raw for years now so it has been opened multiple times.
    I Can not seem to find a solution. I would really like to open up multiple edited Raw files at once, and in Raw give the order to rename them into JPEG. If you do that, you see Photoshop CC and a window that says how many convertions are left. So far so good...  but before, I was able to open up some new raw files in Camera Raw without having to wait for Photoshop to convert everything. Now I have to wait for a long time before I can make my new Edits. Can somebody please help me?
    I am using all updated software.
    Ben

    Hello SSPRENGEL,
    Thank you very much for your reply. My apologies for the mess up with RAW and ACR naming.
    The situation is, that I can not open any file with CMd-R. I can open single files with CMD-O. But I need to open multiple files at ones with CMD-R. It used to work good.
    The problem is, That I am in the business of school photography. I take the pictures as RAW files on an Nikon camera (nef) After I ajust all the pictures, I have to rename all of them to JPEG, just to get them online.
    I used to do that with ACR. But now the problem is, if I open a lot of picures with CMD-O, It opens up very good in ACR and I still can give the command to save all of these as JPEG. It workt great, but I have to wait a looooooong time before I can open up my next batch of pictures and start to adjust those. Normally, it would save the files as JPEG and I was able to open up a new batch of pictures in ACR right away. That saves me A LOT OF TIME. This only works if you can open the files with CMS-R. Strange...
    I updated my I-mac to 10.9.1 so I see that is not the newest. PS-CC is 14-2-1 x64 and I am using the beta ACR for now (8.4)
    I just tried to open a RAW file in photoshop with the normal open command and it lauches ACR perfectly. But again from within Adobe bridge I still get the same error about needing to open a qualifying product at least once.
    Stange isn't it?
    Thank you very much for your time!
    Ben

  • Multiple Rows Update / Refresh Toplink Query when database trigger involved

    Hi everybody!
    I have two easy troubles for you; the platform is the same as the SRDemo Toplink version.
    1.     Multiple Rows Update: I want to update with mergeEntity method, multiple rows for an isolated table; that method receives a parameter that I try to bind with the iterator "dataProvider" but it only merges the first row, not all, any other combination returns an error.
    What I want to do is to have a form (like tabular forms in Apex) that lets me update multiple rows in a single page. ¿May anyone tell me how to do it?
    2.     Refresh Toplink Named Query: I have a list on a page with two columns. From another page, a button does an action that fires a database trigger that updates one of the columns on the list´s page. When I go back to the list, it is not updated; however, the CacheResults´s property is set to false on the iterator.
    Thanks in advance,
    Alejandro T

    I didn't use it (yet), but - you might take a look. You'll find a [url http://www.oracle.com/technetwork/developer-tools/apex/application-express/apex-plug-ins-182042.html]Timer plug-in on this page. It is a dynamic action which allows you to periodically fire other dynamic actions in the browser. For example use the timer to refresh a region every five minutes. You can perform any dynamic action you want using this infrastructure.So I was thinking: you might use it to run a dynamic action which would check whether something changed in that table (I suppose you'll know the way) (for example, a database trigger might set a flag in some table, timestamp or similar), and - if you find that something really changed - refresh the page.
    As I said, I never used it so that's pure theory. Someone else might know better, though.

  • Raw updates needed for CS5 and Elements 11?

    I have several adobe products. I want to install the latest raw updates for CS5 Photoshop and Elements 11. The app. manager tells me I have the latest updates. My CS6 product updated the newest raw product but not my others. I would like to get phone support for these issues - is there a phone number that connects to real people? The %^*()^ support section on the web takes me around in circles - very frustrating.  Any help out there?

    the good old argument is at what point do you stop supporting stuff? Elements is now up to 13.
    I assume Adobe would argue you have cc already why are you still using cs5?
    As I read it, the new 8.7 raw is only good for cs6 and above. They won't make 2 versions of raw, so I assume you are still on 7.4 for cs5?
    On that basis, alas stick with your cs6 to do the newer stuff you need.
    that all said, a bit of manual tweaking seems to work for some people. - Camera Raw 8.1 and PSE 11 - Elements Village

  • Error while doing multiple object updation from EP ! object lock error

    HI all,
    I am doing multiple  object updation using a standard RFC(BAPI_PROJECT_MAINTAIN). The RFC i am calling from Enterprise portal. I am sending data to RFC one by one. But the error i am getting is object is locked by user so data can't be save.
    Though i am using Lock and unlock method before and after calling RFC the project lock error comes up.
    What might be the reason
    regards
    sandeep

    Hi Sandeep,
    Is the RFC you use for locking in the same model as the bapi BAPI_PROJECT_MAINTAIN? If it is not then you are using two connections for communication with the sap R/3 backend.
    You can do 2 things.
    1. You could add the RFCs for locking in the same model as the BAPI_PROJECT_MAINTAIN
    2. Instead of adding the RFCs in one model synchronize the connections the models use as follows:
    IWDDynamicRFCModel model1 = (IWDDynamicRFCModel) WDModelFactory.getModelInstance(Model1.class);
    IWDDynamicRFCModel model2 = (IWDDynamicRFCModel) WDModelFactory.getModelInstance(Model2.class);
    model1.setConnectionProvider(model2);
    You can do this in the wdDoInit. This will make sure both models use the same connection but closing a connection will close both at the same time.
    The same problem applies to commit/rollback functionality.
    Regards,
    Jeschael

  • How do I install the camera raw update?

    how do i install the camera raw update?

    narunski wrote:
    how do i install the camera raw update?
    Try the easiest way first:  simply select the Updates menu item in Photoshop's Help menu. 
    You want to be on version 6.7 of Camera Raw.
    If for some reason the auto updater fails, you can download the updated plug-in and install it yourself by following the instructions on the download page, here:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5371

  • Have CS 5 Installed on my iMac and works ok. But installed on my new MacBook Pro it won't open NEF files from my Nikon D810. Displays NEF icons, but when I try and open them the response is: Make sure latest RAW updates are installed. If problem persists

    Have CS 5 Installed on my iMac and works ok. But installed on my new MacBook Pro it won't open NEF files from my Nikon D810. Displays NEF icons, but when I try and open them the response is: Make sure latest RAW updates are installed. If problem persists follow link: http://www.adobe.com/go/kb407111. Have installed Bridge 5.0.2.4; Raw Ref Version 7.0.0.308; DNG converter_8_7_1.dmg; Bridge 5.0.2 Update 2. Also same problem with Lightroom which I don't normally use. Lightroom_3_LS11_mac_3_6.dmg installed.

    In the link you posted it states that the Nikon 810 requires ACR 8.6 or newer.
    Version of ACR are specific to versions of Photoshop. You cannot use 8.6 nor even 7.0.in CS5.
    I believe that ACR 6.7 is the latest that will work with CS5, so make sure you have this installed and get rid of ACR 7.
    Having 2 versions of ACR will cause problems.
    You have already downloaded DNG Converter 8.7.1.
    Have you double clicked the DMG file to allow you to install DNG Converter on your computer?
    Be aware that DNG converter is a stand-along application and not a plug-in.
    You need to open DNG converter at select the FOLDER that contain your .NEF files.
    Don't open the folder and try to select individual files, it doesn't work that way.
    After converting your D810 files to DNGs you can then open the DNGs in CS5
    The problem is your camera didn't exist when CS5 & its version of ACR was developed.
    i don't use Lightroom, but the list mentions Lightroom 5.6 as needed to open D819 so your 3.6 version of LR won't cut it.

  • Camera Raw update for Panasonic Lumix DMC-FZ1000

    Hi.
    I have Elements 11 and need to update it to open .raw files shot with the Panasonic Lumix DMC-FZ1000. I can't find the link where I can download the camera raw update.
    Can you please help me?
    Thanks.

    Hi,
    The FZ1000 requires camera raw 8.6 which is NOT compatible with PSE 11.
    You will need to upgrade to PSE 13 or use the DNG converter.
    DNG  Converter 8.7
    Mac – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5858
    Win – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5864
    Video tutorial
    http://www.youtube.com/watch?v=0bqGovpuihw
    Brian

  • Camera Raw update for CS5 Extended

    I am looking for a Camera Raw update for CS5 Extended. I currently have CR 6.7.0.339.  IS there something newer for me to use with CS5 Extended, Ver. 12.1x64?

    Camera Raw 6.7 is the latest version that's compatible with Photoshop CS5. There's nothing newer for CS5.
    http://helpx.adobe.com/x-productkb/global/camera-raw-compatible-applications.html
    If you need Camera Raw 7+ for your camera, you'll have to upgrade to Photoshop CS6.
    Which camera do you have?
    Supported cameras and minimum Camera Raw version required are listed here:
    http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html

  • Camera raw update for d7100

    How do I get the camera raw update for Nikon d7100 in mac version of cs5? I can get the dng download on my desktop but don't know how to move it into Photoshop.

    mrosen47 wrote:
    How do I get the camera raw update for Nikon d7100 in mac version of cs5?
    You don't.
    The D7100 was first supported in Camera Raw 7.4
    http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html
    Camera Raw 7.4 will only work in CS6 and above.
    http://helpx.adobe.com/x-productkb/global/camera-raw-compatible-applications.html
    You either upgrade to CS6 or join the Cloud and get CC.
    Or convert to DNG and edit the DNGs in CS5
    http://tv.adobe.com/watch/software-cinema-for-photographers/the-dng-workflow/

  • How download cs5 Camera raw update and how make Photoshop the default in the Bridge "open" menu?

    Two problems  which have defeated me.
    First, I have a new Canon  EOS 500D  and need to download the  recent  (July  2010) CS5 Camera Raw update. However both of my computers freeze when I move from the Adobe Support web page to the Download web page.  Is this a known problem? What to do about it? I am using CS 5 on a Windows 2007 XP computer.
    Second, (probably related to the first)   opening a file in Photoshop is not listed among  Bridge's  "OPEN AS" options. Also,  the "OPEN"  Default is "PAINT". How do I set Photoshop as the "OPEN"  menu  default?
    Thanks for your suggestions. I am truly befuddled by these  issues.
    JackIsaac

    Sounds like something is really wrong with your computer, and it isn't clear what, but if you're just having issues getting to the download link for ACR:
    Here is the download page for ACR 6.1 update:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4728
    Here is the download page for the CS5 12.0.1 update:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4733
    If those links don't work, you can probably find the same updates on the FTP site, although some things here are more than a decade old:
    ftp://ftp.adobe.com/pub/adobe/photoshop/
    See if Bridge and ACR are any happier after installing these two updates.  Make sure you run them as Administrator.
    If those still don't work for you, try another browser, where Internet Explorer, Firefox, and Google Chrome should all work.
    http://www.microsoft.com/ie
    http://www.firefox.com/
    http://www.google.com/chrome
    There are numerous other browsers, as well, but they probably won't work if the above three don't.
    Perhaps you either have a virus that you should scan for, or over-zealous internet-protection software that you could try disabling temporarily.
    My favorite free virus/malware scanner is from www.MalwareBytes.com
    The payfor version will automatically update itself and scan, but the free version works just as well except you have to manually update and scan.

  • How do I install Camera Raw update aget downloading for Photoshop CS6 Ext on Windows 7 64bit

    How do I install Camera Raw update 6.7 after downloading for Photoshop 6 Ext 64 bit
    on Windows 7?

    Camera 6 and its update are for Photoshop CS5 , for Photoshop CS6 we have camera raw 7.

  • Having trouble opening camera raw files. Already downloaded Camera Raw Update for Photoshop CS5. I have a pc.

    Please Help? Having trouble opening camera raw files. Already downloaded Camera Raw update. I have a pc.

    If the camera is fairly new then the version of ACR you have with CS5 won't be able to read those file. You'll need to upgrade to a newer version of Photoshop or use Lightroom 5.
    Once a new version of Photoshop comes out Adobe does not support updating ACR from the older version of PS.

  • Error code when trying to install Camera Raw update 6.6 to CS5 Extended

    I am trying to install the camera raw update 6.6 to my newly purchased CS5 extended and I keep getting an error code U44M2P7, or U44M1P7. I really need to figure this out because it will not read the raw files from my Nikon D7000 without this update. Business will be picking up for me in the next few weeks so I hope to get this figured out soon. Thanks in advance for any help!
    Also, I run a Mac OS X v. 10.6.8

    Have you tried to download and install directly from Adobe, instead of using the Updater in PS?
    http://feedback.photoshop.com/photoshop_family/topics/camera_raw_6_6_update_fails_to_insta ll

  • Can't get the Camera Raw update to 8.3

    OK, this happens every time there is an update. I see that Adobe has an update for Photoshop CC, but the Creative Clod Desktop application says it is up to date, which it isn't. Have contacted Adobe support many times Twice today, the Chat people cut me off while transferring.
    What I have already done:
    Since I have been through this many times, I know the standard drill well.
    Log in and out via the desktop app. even go so far as to log out, quit, reboot the computer and log back in. Didn't help.
    Delete the AAM & OOBE(?) stuff and do the same thing. Didn't help.
    Uninstall and reinstall the Photoshop CC application. Reinstalled the 8.2 version of the plugin.
    Uninstall and reinstall the Creative Clod Desktop application. Didn't help.
    Contacted Adobe support and got cut off twice.
    FWIW, I have a permanent license for Lightroom and got an update notice for it via the old style updater and it worked fine, but now I get a notice when I try to go to Photoshop that I need the Camera Raw 8.3 plugin which Adobe refuses to let me get.
    This happens with every update, but the trick that worked the last time never works again. To say I am frustrated would be a massive understatement.

    Oldbalddude to determine the exact cause of the installation failure I would recommend reviewing the installation log for Camera RAW update.  Please see Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html for information on how to locate and interpret your installation log file.  Please feel free to post any specific errors you discover to this discussion thread.

Maybe you are looking for

  • Error code -36 when copying files to certain drives

    I want to back up my Aperture Library. I have two external fire wire drives that give me this error: The Finder cannot complete the operation because some of the data in Aperture Library could not be read or written. (Error code -36) I don't get the

  • My ipod touch froze how can i fix it

    I can't get my ipod touch to unfreeze how can i fix it?

  • Percentage-based widths jumping with links.

    Example: If I take three boxes, each with the width set to 33.33%, the results in both preview and Chrome are what you expect, 3 equally sized boxes. However, if I add a hyperlink to the box, the preview works fine, but the Chrome preview pushes the

  • Another disappearing Messages problem

    Mac OS 10.8.3 Messages 7.0.1 iOS 6.1.4 Every once in a while I will have a great number of Messages disappear from my Mac. This seems to only affect one conversation at a time and a few days or even a few weeks worth of conversations will disappear.

  • Locate wireless client by IP address ?

    Is there a easier way to locate a wireless client by ip addrss in a WISM controller or even via WCS ? I now go to the home page of my controller and go to the client section and filter by mac address , AP names, etc. once I find that, I  drill in and