ODI 10.1.3 problem with an interface from a query

Hi all

I need to create a new ODI 10 interface from these queries:

INSERT INTO THE TARGET. DWH_ANAG (cod_b, cod_fis, source, first_date,

last_date, last_change_date, extract_date)

SELECT DISTINCT cod_b, cod_fis, 'CN01', sysdate,.

last_date, sysdate, sysdate

OF THE SCENE. CN01 one

WHERE DOES NOT EXIST (SELECT 1

OF TARGET. DWH_ANAG b

A. WHEREcod_b= b.cod_b

and a.cod_fis = b.cod_fis

)

AND NOT EXISTS (SELECT 1

OF TARGET. DWH_ANAG_DELETED c

A. WHEREcod_b= c.cod_b

AND a.cod_fis = c.cod_fis );

It is possible to create a filter on the table of the source using the place where clausole? I don't how can solve this problem. Can you help me please?

Thanks in advance

Left outer join means "give all of the left table even if it does not match".  Therefore, if you want non-matches, just check for NULL field primary key of the right table in the join, and you have the desired lines.  The ANSI join syntax makes the designation left and right a little more clear IMO.

SELECT

DISTINCT A.cod_b

a.cod_fis,

"CN01"

SYSDATE,

a.last_date,

SYSDATE,

SYSDATE

Of

STADIUM. CN01 one

LEFT OUTER JOIN TARGET. DWH_ANAG b

ON a.cod_b = b.cod_b AND

a.cod_fis = b.cod_fis

LEFT OUTER JOIN TARGET. C DWH_ANAG_DELETED

ON a.cod_b = c.cod_b AND

a.cod_fis = c.cod_fis

WHERE

b.cod_b IS NULL AND

c.cod_b IS NULL.

Tags: Business Intelligence

Similar Questions

  • I have intermittent problems with iphoto importing from iphone since 0sx 10.11.6. Update

    I have intermittent problems with iphoto importing from iphone since 0sx 10.11.6. -Update

    1 iphoto sees not iphone - restart

    2 iphoto sees iphone but says "no pictures" - restart

    3 Iphoto sees phone and photos and I click Import all or import selected - then I have problem of file format and nothing is imported

    NOTE: I have similar problems with image capture - sometimes you can see the phone and photos, and sometimes is not

    I have an imac 2015 - execution of yosemite

    Help my new iphone because 7 is coming today and I am terrified of the transfer.

    Not sure, but in any case iPhoto is a dead - it would be really smart to learn pictures (a totally new and different program with a learning curve and different workflows)

    With the help of pictures with my new iPhone 7 and iCloud photo library all works well without any problem - nothing different photos with my iPhone except the news and the best quality Photos 5

    LN

  • Laptop had a problem to "Solve a problem with PSIKey", solution from Windows & installed according to the instructions. How will I know that the problem is solved?

    has stopped working properly.

    An update is available that solves this problem.

    Downloaded Update site Web Protexis, Inc. and told to follow the steps in the installation wizard. The file downloaded and said he was setting up installation. Then after a few seconds, the box has disappeared and nothing else happened. How will I know if this problem has actually been resolved? My laptop has shown 6 problems with this unit from 30/07/11-08/12/11, where the unit has stopped working. Because I don't know what it is yet, I don't know really if the problem is solved or not. What should I do at this point? I have a SP2 7520-5185, running Vista Home Premium, Acer-Aspire. Thanks for any help you can give.

    Hello

    If you have installed a trial or paid a licensed version of Corel software products, you probably may notice a third unannounced software application makes its way into your computer too. The program is PSIService.exe by Protexis, which installs a Protexis V2 of Licensing Windows operating system service or Protexis licensing service.

    PSIService belongs to protect DRM (digital rights management) copy protection and license management software, which is intended to protect an application or software against piracy and illegal copying. Thus PSI service is normally installed by another program, such as Corel Paint Shop Pro Photo X 2, Corel Paint Shop Pro XI (X 1), Corel Paint Shop Pro X, that uses its service to collect information of license to repatriate much like spyware, protect copy and authenticate the user who is using an authentic version of the program.

    When you tried to download and install the program, if the box that says closed the dialog box when the download is complete has been verified, it will close the dialog box.

    I suggest that you restart the computer and check if you get an error message.

  • I just looked at problems with importing files from nikon D810 in LR 5.7 it pop a window saying it can't read the files to work on an imac 27 "yosemite on my mac pro running after several times he finally managed to read files and import them into LR

    I just looked at problems with importing files from nikon D810 in LR 5.7 it pop a window saying it can't read the files to work on an imac 27 "yosemite on my mac pro running after several times he finally managed to read files and import them into LR, I never had this problem before there was a sort of update that could from cause?

    What is the destination folder that the date be underneath?  In the top right it says users who suggests, you try to put the photos on top of your username instead of under your username.  Maybe that's the problem.  So change your folder in the drop-down list at the bottom right of what it should be rather than users, and if you're going to show us the destination of your photos at least scroll through the list of folders down right so that we can see which is the white highlight.

    Here is how mine looks like if I want to put my photos imported under my subfolder users - Steve - photos by date:

  • Problem with the help of oraext: query-database in the transformation (XSLT 2.0)

    Hello!
    I m facing a problem with the help of oraext: query-database.

    In my transformation im try the following (Simplified):
    <xsl:template match="*">
      <xsl:variable sqlQuery="select ....."/>
      <xsl:variable name="storeSec" select="oraext:query-database($sqlQuery,true(),true(),'jdbc/xref')/>               
        <xsl:choose>
         <xsl:when test="string-length($storeSec/ROWSET/ROW[1]/STORE_PART_SECTION) > 0">
              <xsl:value-of select="$storeSec/ROWSET/ROW[1]/STORE_PART_SECTION"/>
         </xsl:when>
           <xsl:otherwise>
                <xsl:value-of select"some other val"/>
           </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
    {code}
    
    This always results in +some+ +other+ +val+ !!
    I´v checked the output from oraext:query-database by using getcontentAsString and if I instead test putting the expected output from oraext:queryDatabase in my variable it gives me A100 which is what i expected.
    
    {code}
    <xsl:template match="*">
      <xsl:variable sqlQuery=select ....."/>
      <xsl:variable name="storeSec">
        <ROWSET>
         <ROW num="1">
           <STORE_PART_SECTION>A100</STORE_PART_SECTION>
         </ROW>
         <ROW num="2">
           <STORE_PART_SECTION>XXm</STORE_PART_SECTION>
         </ROW>
        </ROWSET>
      </xsl:variable>               
        <xsl:choose>
         <xsl:when test="string-length($storeSec/ROWSET/ROW[1]/STORE_PART_SECTION) > 0">
              <xsl:value-of select="$storeSec/ROWSET/ROW[1]/STORE_PART_SECTION"/>
         </xsl:when>
           <xsl:otherwise>
                <xsl:value-of select"some other val"/>
           </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
    How to get the correct value when you use oraext:query - database?

    How should you exit? Several item ID with each having a value of the result set?
    If Yes, then you can try following:

     
                        
                            
                        
                             
                                  
                             
                        
                            
    
  • Unique problem with selction on the table (Query Page)

    Unique problem with selction on the table (Query Page)

    I have a VO data Bulletin Board, with a transitional attribute for selction unique column.
    My requirement is that I need to identify the line that was selected in the table.

    I associated with fireAction singleSelection column, such that whenever the user selects the line
    I'm looking for that VO using some rowIterator.
    But when running the loop of the transient VO that is mapped to the singleSelection variable is the show as "n" / NUll
    for all the lines...

    So how do you identify the selected line in singleSelection to a table.

    -Sasi

    In the property inspector of the element for which you've put firePartialAction, you can find a property named "parameters". That mention primary key as your setting.

    You can get the arameter using pageContext.getparameter ();

    -Anand

  • Satellite L670-1HD - problem with audio interfaces USB 1.1

    Hello

    I have a Toshiba L670-1HD with an Intel HM55 chipset, and an Intel Core i5 460M processor. I use this machine for my music software and that's why I use different audio interfaces external and USB-MIDI-Controller with build in audio interface like Mixvibes U - Mix Control Pro (http://www.mixvibes.com/content/u-mix-control-pro). These built-in audio interface are connected via USB 1.1. Always when I use this audio interfaces interfaces crash audio internalt - the sound is cracked very hard and there are noises in. The controller of all crashes sometimes too.
    When I use another interface audio as an audio interface Hercules DJ Trim 4 & 6 (http://www.hercules.com/uk/DJ-Music/bdd/p/102/deejay-trim-4-6/), which is a USB 2.0, everything works fine. No crashes, no cracks and no noise.
    You could say now that there is no problem and I should stick to the Hercules interface if it does no problem. The problem is that the Hercules is an audio interface only, there is no controller in it with which I can control my music software.

    I've updated all the drivers from the support page of this site without success. Is there a solution available or the Toshiba knows this subject? Am I the only one having this problem?

    Would be nice if a Toshiba official support employer could respond to this message. But this does not mean that I don't want to read somethng submitted by the user for which an index - all Board/Council/recommendation is welcome.

    Thanks in advance for the help!

    See you soon,.

    Stefan

    Hello Stefan

    In my view, you see the problem from the wrong point of view.
    Toshiba and each laptop manufacturer offer product and hardware and software support. So if there is a general problem with the functionality of the material you are by Toshiba on the right address.

    You use a third party and that you have some problems. Do you really believe Toshiba should support you and help to get this external peripheral work? In my opinion not. On the market, there are thousands of different devices and laptop computer how of the manufacturer must be able to test each of them and offer a solution?
    Something like that is definitely not possible.

    In my opinion, you should communicate with Mixvibes and ask for help. They have the best experience with own product and I presume that they are testing the features on different PC/laptop platforms.
    They should know how the device should work on new laptops with USB 2.0.

    It seems silly now, but Toshiba has nothing to do with it. If you have a general problem with the USB ports and they don t work with different devices that Toshiba should ask for help.

  • Problems with soap Interface

    Hi all

    We have a little problem with the SOAP Interface and the workflow "to generate a new workflow to a SOAP operation. If we try this workflow, you get the following error message:

    [SCRIPTING_LOG] TypeError: Cannot find the getHost function. (Workflow: build a new workflow to a SOAP operation / prepare settings (item0) #2)

    Any ideas?

    TIA

    Thomas

    Hello

    found the error, the authentication of the user was wrong..., now it works

    Thomas

  • A problem with importing Interface Open Payables

    Hello

    I am facing a problem with the import of accounts payable of the open Interface...

    My requirement is:
    1. need to download the PO, vendor, invoice #, Date of invoice in detail in table custom (via web ADi)
    2. in table storage custom in AP invoice tables interface.
    3. of the call (Payables open Interface Import) the table API Interface, which create the invoive (IN. matched)

    Now, if the user gave wrong data a few reasons... Payables open Interface Import rejected this entry... user has this checked and corrected later and trying to create the same correct invoice with the data... As there is a rejection there is a line on the header, line interface interface... Although if it passes the correct data in the second time it is cosidering that rejected row and does not concerned line...


    The one you suggest on this...

    Kind regards
    Bala

    When processing a file, you can check if another ap_invoice_interface record exists for the same invoice number and
    (1) delete the old record, then insert a new
    OR
    (2) update the old record rather than create a new

    Hope this helps,
    Sandeep Gandhi

  • I have a problem with importing photos from iphone to photo

    I have a problem with importing the photos from the iphone to the photos. I have the OS X El Capitan 10.11.1

    It seemed to me that I can't push the button import. It is grayed out.

    Your picture-click the camera icon to add a picture

    How the phone is connected?

    LN

  • Problems with discrete graphics from NVS 5200 m on T430s

    Hey all,.

    I just got my T430s mail this past weekend, and I had trouble with the Blue Screen of Death. It happened twice so far, and both times the graphics card is not recognized after reboot. The first time it happened, I tried to do a system restore, but that did nothing. I reinstalled the initial configuration using the recovery partitiion operating system, and that did the trick.

    The blue screen of death just happened again, and exactly the same problem has cropped up again. After reboot, the system no longer recognizes it has a discrete graphics card. When I try to start the Nvidia Control Panel, it tells me that it cannot detect a discrete graphics card in the system.

    I did a quick search of the forum, and I can't find any thread with a similar problem. I found this in the Lenovo support area, but it is not relevant to my http://support.lenovo.com/en_US/diagnose-and-fix/detail.page?DocID=HT052544equipment >

    On the NVIDIA site, I can only find drivers 'Beta' for NVS 5200 M http://www.nvidia.com/object/notebook-win8-win7-winvista-64bit-304.79-beta-driver.html>. After you download the driver and any attempt to install, the system gives me the same error that it cannot find any compatible graphics hardware.

    Here's my hardware configuration:

    ThinkPad T430s

    i5 3320 M 2.60 GHz

    NViDIA NVS 5200 m

    4 GB of RAM (stock)

    360 GB HARD drive (stock)

    It is located in Optimus. I don't think that there is only a discreet.

    I called Lenovo support center and discovered that there is a new graphics driver. Have not had a problem with the blue screen of death since then. Looks like that was the problem.

    Once more, if it happens again, I'll be sure to post here.

    -Dean

  • problems with automatic updates from microsoft

    have hp pc running xp pro version 2002 service pack 3, and when I allow the automatic update (kb2661254 or kb2749655 or kn2756822) to install the machine restarts.

    I try and install one at a time and each restarts the machine?

    Win update works better with ie8.

    one or more of your defenses can be cousing problems with updates.

    other updates at the same time comeing too can couse problems.

  • My HP laptop has had a problem with the uncontrollable from scrolling upward and to the left.

    Hoping someone can help me with this - for a month or if my computer hp laptop has had a problem with uncontrollable scroll upward and to the left. It is now getting worse and happens in all programs, including Word, Adobe, browsers, etc.. Even to type this message is difficult because the cursor periodically jumps to the top left corner of the text box. I tried to attach a new external mouse, but this is not enough. The problem occurs even when not to use the touchpad. I scanned my computer with several anti-virusprograms but no luck. It becomes difficult to use the computer for something else. Even now the down arrows / right does not help. PLEASE ADVISE!

     
     
    Original title: scrolling problem

    Hi Suresh,

    This is a late response to your question, but I thought that I could add more information here.

    From your description, it seems that your PageUp and the keys to the House (or arrows) of the keyboard are either stuck, or failing. These keys usually help access us in applications you mentioned. And since you mentioned that this happens even when the touchpad is not in use, it is likely that this could be the cause here.

    I suggest get you the checked keyboard when using a hardware technician, preferably from your computer manufacturer. That should help you understand better.

    Let us know if you need help with Windows, we are happy to be of assistance.

  • Problems with the servers from Adobe in Germany (Workflow: InDesign-&gt; Content Viewer)

    We had some problems with the download of our fact sheets on Adobe servers end of January / beginning of February. Also our iPads test often could not connect to the content viewer. There are outages of server in Germany during this period?

    Updates are always displayed at http://status.adobedps.com/. You can check messages to see if all coincides with when you download problems.

    Neil

  • Problem with printing pdf from Adobe Acrobat Pro

    Hello

    I have Adobe Acrobat Pro 9.4.3.

    PDF-print has always worked a lot, but all of a sudden, there is some kind of problem.

    After you print a "Print to PDF" built-in excel document in MacOS or Adobes printer I have PDFs corruptet when showing them in Adobe Reader/Acrobat, but MacOS software preview shows them correct.

    So there can't be any problem with printing, but the local preview on my computer using Acrobat or Reader. I don't even use the Myriad in document police, I use Verdana.

    screen.jpg

    You say you use Verdana, but you're not. The error message clearly indicates that you use MyriadPro "BOLD".

    You probably recently installed Mac OS X 10.6.7 update that has a bug with OpenType PostScript as "BOLD" MyriadPro fonts. Use the Verdana or another font TrueType or PostScript, or come back to Mac OS X 10.6.6.

    Discover the problem here: http://www.tidbits.com/article/12078

Maybe you are looking for