Whats the best way to get a description for a code

Hi,
What is the best way to find description for a code, when both of them resides in different table.I have to do this like 3 times for different codes.The code and description lies in differnt table.
Can i use select statement.. if yes, what operator should i use?
Thanks

Hi,
to do a lookup you may either use the Key Lookup Operator (it makes it easier to define default return values if the lookup fails) or a Joiner (to probably outer join your lookup table).
If you have many lookups you can do them in one joiner instead of having a key lookup operator for every one of them to reduce the total number of operators in your mapping.
Regards,
Carsten.

Similar Messages

  • When I'm done with my fcp sequence, whats the best way to get it to dvd?

    When I'm done with my fcp sequence, whats the best way to get it to dvd?

    The advice to go to Compressor left out the part that you may want to convert your audio to AC3 becaus ethe MPEG2 bitrate is probably too high for DVD specs.
    This method is in the DVDSP manual and it's in the Compressor manual, both difficult to locate, but easily searchable.
    Here's what I'd do: Export the timeline form FCP in the native sequence settings, self-contained. Bring that self-contained movie into DVDSP and let DVDSP handle the transcode.
    The advice to go to iDVD is even easier.
    bogiesan

  • Whats the best way to get dvd onto 5800

    Peoples,
    I'm strugglin to get DVD onto my noka 5800. It's not obvious in the user manual and looking around the web i need to 'convert' it to the fim on.
    Please does anybody have an easy, fool proof way of doing this??????
    Message Edited by blueleaches on 21-Aug-2009 06:02 PM

    If its possible there should be some walkthrough's on google. 
    http://www.lmgtfy.com/?q=whats+the+best+way+to+get+dvd+onto+5800 

  • Whats the best way to get a big text file in a CLOB variable?

    Hi,
    I have a very premitive type of question.
    I have a big text file, say 30 MB, in a Unix directory (Solaris). I want to get the whole text of that file in a CLOB variable.
    I saw the procedure dbms_lob.loadfromfile/loadclobfromfile. In both these cases, according to the documentation, the target where is collect the data will be a BLOB and not a CLOB. So, I have to convert that blob into a clob.
    If I want to avoid all this conversion process, whats the best way to get a text from a file into a CLOB variable?
    Please suggest.
    Regards

    In addition, LoadFromFile is overloaded to handle both BLOB and CLOB:
    PROCEDURE LOADFROMFILE
    Argument Name                  Type                    In/Out Default?
    DEST_LOB                       BLOB                    IN/OUT
    SRC_LOB                        BINARY FILE LOB         IN
    AMOUNT                         NUMBER(38)              IN
    DEST_OFFSET                    NUMBER(38)              IN     DEFAULT
    SRC_OFFSET                     NUMBER(38)              IN     DEFAULT
    <BR>
    PROCEDURE LOADFROMFILE
    Argument Name                  Type                    In/Out Default?
    DEST_LOB                       CLOB                    IN/OUT
    SRC_LOB                        BINARY FILE LOB         IN
    AMOUNT                         NUMBER(38)              IN
    DEST_OFFSET                    NUMBER(38)              IN     DEFAULT
    SRC_OFFSET                     NUMBER(38)              IN     DEFAULT

  • Im having trouble with my ipad mini in regards with the icloud back up notification; if i press "ok" it doesnt dis appear, i couldn open my ipad/turn off because of this notification; whats the best way to get rid of this? please help

    im having trouble with my ipad mini in regards with the icloud back up notification; if i press "ok" it doesnt dis appear, i couldn open my ipad/turn off because of this notification; whats the best way to get rid of this? please help

    Have you tried a soft-reset ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider if it appears), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Whats the best way to get the server name in a servlet deployed to a cluster?

              Hi,
              I have a servlet in a web application that is deployed to a cluster, just
              wondering what is the best way to get the name of the node that the server is
              running on at run time??
              Thanks
              

              Please try to modify the following code and test for your purpose: (check Weblogic
              class document for detail)
              import javax.naming.*;
              import weblogic.jndi.*;
              import weblogic.management.*;
              import weblogic.management.configuration.*;
              import weblogic.management.runtime.*;
              MBeanHome home = null;
                   try{
                        //The Environment class represents the properties used to create
                             //an initial Context. DEfault constructor constructs an Environment
                             //with default properties, that is, with a WebLogic initial context.
                             //If unset, the properties for principal and credentials default to
                             //guest/guest, and the provider URL defaults to "t3://localhost:7001".
                             Environment env = new Environment();
                             //Sets the Context.PROVIDER_URL property value to the value of
                             //the argument url.
                             if(admin_url!=null){
                                  env.setProviderUrl(admin_url);
                                  //Sets the Context.SECURITY_PRINCIPAL property to the value of
                                  //the argument principal.
                                  env.setSecurityPrincipal(username);
                                  //Sets the value of the Context.SECURITY_CREDENTIAL property to
                                  //the value of the argument cedentials
                                  env.setSecurityCredentials(password);
                                  //Returns an initial context based on the properties in an Environment.
                                  ctx = env.getInitialContext();
                             }else ctx = new InitialContext();
                             home = (MBeanHome) ctx.lookup(MBeanHome.ADMIN_JNDI_NAME);
                             ctx.close(); //free resource
                             // or if looking up a specific MBeanHome
                             //home = (MBeanHome) ctx.lookup(MBeanHome.JNDI_NAME + "." + serverName);
                             DomainMBean dmb = home.getActiveDomain(); //Get Active Domain
                             ServerMBean[] sbeans = dmb.getServers(); //Get all servers
                             if(sbeans!=null){
                                  for(int s1=0; s1<sbeans.length; s1++){
                                       String privip = sbeans[s1].getListenAddress();
                                  sbeans[s1].getName();
                             sbeans[s1].getListenPort();
                                                 WebServerMBean wmb = sbeans[s1].getWebServer();
                   }catch(Exception ex){
              "Gao Jun" <[email protected]> wrote:
              >Is there any sample code? Thanks
              >
              >Best Regards,
              >Jun Gao
              >
              >"Xiang Rao" <[email protected]> wrote in message
              >news:[email protected]...
              >>
              >> Sure. You can use the Weblogic management APIs to query ServerBean.
              >>
              >>
              >> "Me" <[email protected]> wrote:
              >> >
              >> >Thanks for your reply, i was hoping to find a better way for example
              >> >a class in
              >> >weblogic API.
              >> >
              >> >Thanks
              >> >
              >> >"Xiang Rao" <[email protected]> wrote:
              >> >>
              >> >>Physical: InetAddress.getLocalHost().getHostName()
              >> >>Weblogic: System.getProperty("weblogic.Name");
              >> >>
              >> >>
              >> >>"Me" <[email protected]> wrote:
              >> >>>
              >> >>>Hi,
              >> >>> I have a servlet in a web application that is deployed to a
              >cluster,
              >> >>>just
              >> >>>wondering what is the best way to get the name of the node that
              >the
              >> >>server
              >> >>>is
              >> >>>running on at run time??
              >> >>>
              >> >>>Thanks
              >> >>
              >> >
              >>
              >
              >
              

  • Using final cut studio what the best way of getting a mini disc in to FCP?

    I do some weddings and record some audio on to a mini disc recorder ( the small ones . On my avid liquid edit suite I just used to run it in live or ingest it on a 2 hour timer, and just record audio.
    What the best way to do it with final cut studio and final cut pro?

    Is there a reason you can't do the same on your mac system? What outputs does the audio recorder have?
    Jerry

  • What is best way to get LCD display for Mac mini?

    Just got Mac Mini but when I connect it to my Samsung LCD the display quality is crap.  What is the best way to get HD resolution, (maximum quality) from this set up?

    Thanks,
    I did try all of the settings on the LCD display.  It is 1,920 x 1,080 pixels.  Built in 2011 by Samsung as a HD TV, computer monitor and audio/video combo.  I just let the Mac mini select the appropriate settings when I did initial startup last night.  I It came with an HDMI to DVI adapter which (to me) implies I need to get the male end of the DVI adapter to connect to the 9 pin (PC input).  Current HDMI is working but just not the "wow factor" that I expected from the Mac mini.  Compatibiltiy issue of some kind; input/output, settings, software update, or user error   Was trying to avoid getting a new monitor.

  • Whats the best way to get a copy of a clients DB onto an internal test DB?

    Hi there
    We have a client who hosts an Oracle 9i DB in house and we need to get a copy of this DB onto our own servers for testing purposes. What is the best way to go about doing this?
    I was reading about the data pump for exporting and importing [http://www.exforsys.com/tutorials/oracle-10g/oracle-10g-using-data-pump-export.html]
    Would this meet my requirements and how easy is it to do? Also what type of export would I need to do (there a 5+ schemas using different tablespaces)
    Sorry if this is all a bit vague, but i am not a DBA and have been tasked with doing this :(
    Thanks in advance,
    Toby
    edit: sorry i meant a 9i DB
    Edited by: redeye on Nov 5, 2009 11:21 AM

    If you want to export schemas/objects from 9i db you wouldn't be able to use datapump for exporting them,although you can import the dump file that will be created using the datapump.
    Determine what schemas you need at the test(destination) database, and then export them from the source(clients db) database.
    Also make sure that on the target database server, os paths where the oracle related files will be created(redo logs,datafiles...) are the same as the ones that are on the source database.

  • What is the best way to get storage data for hard disk using REST api

    Hello All,
    Given that I have disk info for virtual machine/role from service management REST api (for example using
    GetRole) how I could retrieve container/blob related info for it?
    So I have credentials for service management REST API, I have OSVirtualHardDisk info, but I am not sure how to detect correctly to which storage account connect and than which container to use. Yes, I know that there is OSVirtualHardDisk .MediaLink property
    which contains storage account name and container inside of it but I am not sure it is good practice to assume about it format. Alternatively I have another solution - just retrieve all storage accounts from  Service management REST, then compare url
    of each account with disk's  MediaLink. And use appropriate storage account for further data retrieve.   But seem to me it could retrieve too many info. 
    So generally I am trying to find correct way to join  service management REST api and Storage Services REST API for disks

    Hi,
    From my experience, your first approach is correct. The media link exactly points to the location of the blob. With the link, you can access the blob if you have the storage account key. If you want to extract more information, such as what
    the container is and what the blob is, you can parse the link. 
      >> From my point of view it is bad way to retrieve storage account name and container.
    In addition, you are welcome to post feature requests on
    http://feedback.windowsazure.com/forums/34192--general-feedback
    Best Regards,
    Ming Xu
    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.
    Click
    HERE to participate the survey.

  • Whats the best way to get 3GS screen repaired?

    I have had my phone for a week and the screen has cracked all the way a across the phone. It is just the glass not the LCD, but Apple wants $199 to fix it and that's what I paid for the phone. I have had a BB Storm since they came out and have literally thrown it at someone and you can't break it. Very disappointed with how fragile the iPhone is.

    Just to follow up:
    A local shop said $189 to replace the LCD.
    I took it to another Apple retail store and they fixed it (glass and digitizer) under warranty, no questions asked.
    While I'm pleased with my treatment at the 2nd Apple store, I'm disappointed at the overall experience. I paid $300 for this phone, with a warranty, yet when it broke under warranty, some random "genius" at the retail store decides it's going to cost me another $200 to have a working phone because it's his feeling that I must have dropped it. I asked him what standard he used to distinguish between a phone that fails under normal wear-and-tear due to a mfg defect and one that was dropped but he couldn't answer except to say that it just must have been dropped. I go to another store and get a completely different answer.
    "Customer Service Rep Roulette," where your outcome will vary wildly depending on who answers the phone, is a pervasive phenomenon and the scourge of companies like DirecTV. But after all the gushing I've heard from devotees about the company and its products, I'm surprised and disappointed to run into it with Apple.

  • Whats the best way to get an averaged measuremen​ts while scanning?

    I currently have a PXI 4071 DMM and a PXI 2575 Mux. I've played around with the examples of how to do scanning of channels which all works out fine. However the scanning only takes one measurement every time it steps down the scan list. What I need is for every scan step to take X number of measurements and average them before moving on to the next scan step. I've played around with the Sample Count and Trigger count but cannot seem to get this done correctly. I've gotten it to the point where it runs through the scan list multiple times and I can average from that but I don't want to tax the relays that much. Can anyone point me in the correct direction for this?

    Hey Duke,
    I can say with great confidence that the 407x DMM is much more accurate
    than any DAQ product NI sells; if you're seeing unexpected accuracy errors after acquiring one data point with the 407x DMM, I think the best method is to figure out the discrepancy, not average it out.  I recommend you verify the DUT signal with a scope (you can use the DMM in digitizer
    mode) to see if the signal is still settling as you take your first measurement.  If this is the case, each successive measurement becomes much closer to the value you expect,  so averaging 5 samples allows the system to settle at the later points, and we get close to the actual value.  If this is the case, then I recommend you increase the settling time property (configuration»Advanced»Settle Time) enough that your DUT signal has settled and then take a single measurement (with increased aperture time, if desired, as mentioned previously).  Note that the value you obtain will differ from the old system if the above conditions exist... the 407x measurements are more accurate.
    Obviously, if you scope the signal and it's steady during your first measurement, then my previous post would solve the problem while still taking only one measurement.  For my own curiosity, what type of measurement are you performing?
    Keep us up to date on your progress and don't hesitate to post of with any additional questions.
    -John Sullivan
    Analog Engineer

  • Whats the best way to get a smashed screen sorted on my 4S?

    Thee screen crakcked when I had only had the phone for a couple of weeks but I left i because the crack did not obscure vewing. However now, months later, the screen is cracked all over and is difficult to read, so needs to be replaced or the phone changed. Please can anyone advise me on the best solution. Thank you.

    It is a phone from service stock. It may be new or reconditioned. There is no way that you, or the people at the Apple Store can tell the difference. The only thing they can identify is that it is a service replacement.

  • Whats the best way to get rid of a virus, whats the best way to get rid of a virus

    Preferences

    I'll echo MadMacs0's request for specific information about the threat. You should find it in Kaspersky's Detected Threats list. The first column will show the path of the file determined to be malware, and the Name column lists the name that Kaspersky calls that malware. We need to know what the full contents of both those values are. Be sure to resize the columns so you can see the whole thing, if necessary.
    Most likely, this is just Windows malware attached to an e-mail message or something along those lines.

  • Whats the best way to produce PDF output for Graphics

    Greetings;
    I posted something earlier which received no replys, so I figure I probably asked the wrong question.
    I have recently migrated an application over from Delphi and I have to admit that I'm not as familiar with using Java and Graphics as I wish I were - I'm learning fast though..
    Anyway I have an bufferedImage object in which I am drawing a few lines, pasting some text, and drawing circles and such. I currently am saving the file as a JPG using the following snippet of code:
        try
          FileOutputStream fos = new FileOutputStream(fileName);
          JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(fos);
          encoder.encode(myBImage);
          fos.flush();
          fos.close();
        catch(Exception e)
          System.err.println(e.toString());
        }I've seen a few posts about PDF which all seem related to Text and printing as such - in fact the only post I've seen about converting a JPG to PDF seemed to circumvent the whole graphics object - which isn't a choice (I don't think it is) in my case.
    Can anyone just provide me the best direction to look for this?
    Thanks again;
    Eirik..

    Ouputing PDF manually can be large undertaking, i would recomend you refere to the many open source project of apache to use a pre-built method of output.
    jakarta.apache.org
    ( there are two projects that accomplish what you are trying to do .. i just cant remember their names off the top of my head. )

Maybe you are looking for

  • Restore thumbnails for .ai files in Windows Explorer

    Please please please? I spend so much time now trying to find the .ai files I need - Bridge is really really slow, and so I end up navigating to files in Windows Explorer, then opening Bridge and navigating to the same location in Bridge and then wai

  • Can We... Plz Help me...

    hello Friends... Can any one help me plz.... i want to know, whether we can include a frame(swing) in an jsp file,.. if so how.... plz help me if u know...... regards Arulraj...

  • Best Practices with sub-par equipment

    Hi guys, I am needing some suggestions for the best way to capture and edit with the equipment I have to work with. Basically, I have the following: (1) Panasonic AG-DVC20P DV-Cam with Firewire connection (1) Kodak Easyshare z812 (1) Zoom h4 digital

  • How to convert CLOB data (now it is in html format) to Normal text format

    Hi, Can anybody let me know the solution for how to convert CLOB data into normal Text.In my case the table column having CLOB datatype and the data is in html format.when i run the report the column is displaying html tags .Now i need to convert tha

  • Importing the ES Bundle webservices into the Service Registry of PI

    Experts, We have an ECC 6.0 Enhancement Pack 3, PI 7.1, and CE 7.1 landscape and are having some trouble getting the Enterprise Web Services that come with EP3 to show up in the Service Registry that came with PI. We are following the guide "CE, ESR,