<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: [resolved] tOracleOutput Update : recup the line which not updated in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333228#M102031</link>
    <description>Et en fait c'est quoi exactement ton probleme? T'as google talk?</description>
    <pubDate>Thu, 01 Dec 2011 15:05:33 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-12-01T15:05:33Z</dc:date>
    <item>
      <title>[resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333214#M102017</link>
      <description>Hello, 
&lt;BR /&gt;I would like to update some data in a table. For that, I'm using a tOracleOutput component with the option Update and I check the "Use field option" 
&lt;BR /&gt;(key for update, field can be update) in "Advanced setting".
&lt;BR /&gt;The schema is Inputfile --&amp;gt; tMap --&amp;gt; tOracleOutput 
&lt;BR /&gt;My job is ok but I would like to have the lines which not be update in the table.
&lt;BR /&gt;Someone have an idea please ?
&lt;BR /&gt;Thanks</description>
      <pubDate>Sat, 16 Nov 2024 12:32:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333214#M102017</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333215#M102018</link>
      <description>use insert or update?</description>
      <pubDate>Wed, 30 Nov 2011 16:07:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333215#M102018</guid>
      <dc:creator>janhess</dc:creator>
      <dc:date>2011-11-30T16:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333216#M102019</link>
      <description>Hi,
&lt;BR /&gt;After the update (or before), you can do a LEFT OUTER JOIN using a tMap between the Oracle table (main) and the input file as the lookup. Use a schema that includes columns from both the table and the input file even if they are duplicated. For the records not found in the input, there will be a set of null columns. 
&lt;BR /&gt;These records can be filtered in a tFilterRow, routing the filter connection to the destination. The filtering criteria will be the presence of null values in the columns from the input file.</description>
      <pubDate>Wed, 30 Nov 2011 16:21:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333216#M102019</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-30T16:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333217#M102020</link>
      <description>Yes normally, I use a lookup but in this case, the main Oracle table have  58 705 389 lines so it will take so much time.</description>
      <pubDate>Wed, 30 Nov 2011 16:32:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333217#M102020</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-30T16:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333218#M102021</link>
      <description>Don't do the tMap LEFT OUTER JOIN if you have a lot of data.
&lt;BR /&gt;Stage the input file and use the Oracle MINUS set-based operation. This would provide query a tOracleInput. Oracle can give MINUS some performance boosts to this type of statement.
&lt;BR /&gt;SELECT id, name, ...
&lt;BR /&gt;FROM staged_file_table
&lt;BR /&gt;MINUS
&lt;BR /&gt;SELECT id, name
&lt;BR /&gt;FROM target_table
&lt;BR /&gt;If there was a record with id 10 in the staged_file_table that wasn't present in the target table, no update would have happened and the MINUS query would return the 10.</description>
      <pubDate>Wed, 30 Nov 2011 17:13:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333218#M102021</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-30T17:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333219#M102022</link>
      <description>Sorry but I don't really see how I can do that. My staged_file_table is provide by the output of a tMap and I can use a tOracleInput to make a MINUS after...</description>
      <pubDate>Thu, 01 Dec 2011 10:25:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333219#M102022</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T10:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333220#M102023</link>
      <description>Hi,&lt;BR /&gt;Can you post a picture of your job?</description>
      <pubDate>Thu, 01 Dec 2011 12:07:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333220#M102023</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T12:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333221#M102024</link>
      <description>My suggestion about the MINUS operator requires a new staging table in Oracle to take advantage of the in-database processing.</description>
      <pubDate>Thu, 01 Dec 2011 13:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333221#M102024</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T13:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333222#M102025</link>
      <description>How I can post a picture ?</description>
      <pubDate>Thu, 01 Dec 2011 13:08:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333222#M102025</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T13:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333223#M102026</link>
      <description>....(T_T). Just click on the post reply button on the top of the topic and select the number of the picture you want to upload...</description>
      <pubDate>Thu, 01 Dec 2011 13:15:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333223#M102026</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T13:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333224#M102027</link>
      <description>ok thanks</description>
      <pubDate>Thu, 01 Dec 2011 13:17:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333224#M102027</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T13:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333225#M102028</link>
      <description>I would like to update the table "MARQ" with the data from the tMap ...</description>
      <pubDate>Thu, 01 Dec 2011 13:18:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333225#M102028</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T13:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333226#M102029</link>
      <description>Tu peux upload le job entier parceque la je vois quasi rien, merci !</description>
      <pubDate>Thu, 01 Dec 2011 14:26:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333226#M102029</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T14:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333227#M102030</link>
      <description>Ben la partie du job en question est le tMap4 ainsi que le tOracleOutput "MARQ" . Le reste du job fais juste quelques contrôles...</description>
      <pubDate>Thu, 01 Dec 2011 14:52:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333227#M102030</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T14:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333228#M102031</link>
      <description>Et en fait c'est quoi exactement ton probleme? T'as google talk?</description>
      <pubDate>Thu, 01 Dec 2011 15:05:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333228#M102031</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T15:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333229#M102032</link>
      <description>Quand tu dis que tu veux les lignes qui ne seront pas updatées, tu parles des enregistrements qui n'existent pas encore, c'est à dire des enregistrements qui seront à terme insérés?</description>
      <pubDate>Thu, 01 Dec 2011 15:08:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333229#M102032</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T15:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333230#M102033</link>
      <description>Je dois mettre a jour des données d'une table Oracle en fonction d'un fichier source fourni. Je souhaiterai identifier les lignes de mon fichier source qui n'ont pas été mise à jour dans la table (pb de clé donc).
&lt;BR /&gt;non dsl, je n'ai pas google talk ...</description>
      <pubDate>Thu, 01 Dec 2011 15:23:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333230#M102033</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T15:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333231#M102034</link>
      <description>Comment fais tu ton update? Est ce que tu fais une jointure sur ta table au préalable?
&lt;BR /&gt; ttable
&lt;BR /&gt; |
&lt;BR /&gt;tinputfile-----|-----ttable</description>
      <pubDate>Thu, 01 Dec 2011 15:42:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333231#M102034</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T15:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333232#M102035</link>
      <description>Je ne vois pas vraiment quel probleme tu pourrais avoir sur tes clefs à partir du moment ou les enregistrements existent deja, tes clefs ne bougent donc pas.</description>
      <pubDate>Thu, 01 Dec 2011 15:43:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333232#M102035</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-01T15:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tOracleOutput Update : recup the line which not updated</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333233#M102036</link>
      <description>Or3l, 
&lt;BR /&gt;A la base, en faisant un tOracleOutput , mes lignes sont mises à jour mais je ne récupère pas les lignes qui n'ont pu être mise à jour. 
&lt;BR /&gt;La j'ai résolu en utilisant le conseil de Walkerca. Pour cela, j?écris d'abord mes lignes dans une table temp Oracle. Ensuite avec un tOracleInput, je fais un left join sur la table source avec mes champs key : 
&lt;BR /&gt;SELECT A.t1, A.t2, A.t3, B.key, B.key2 
&lt;BR /&gt;FROM A 
&lt;BR /&gt;left outer join B 
&lt;BR /&gt;ON A.t1 = B.key and A.t2 = B.key2; 
&lt;BR /&gt;Si key et key2 sont nul, c'est que ma ligne source n'existe pas dans ma table de destination. je peux ensuite, à l'aide d'un tMap ou je test la nullité de ces 2 champs, identifier les lignes qui n'ont pas pu être mise à jour dans ma table.</description>
      <pubDate>Fri, 02 Dec 2011 09:36:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tOracleOutput-Update-recup-the-line-which-not-updated/m-p/2333233#M102036</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-02T09:36:08Z</dc:date>
    </item>
  </channel>
</rss>

