<?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: Oracle + Bulk UPSERT(Update or Insert) in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240654#M28073</link>
    <description>Hi Babu
&lt;BR /&gt;You can use txxxTableList to iterate each table.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
    <pubDate>Fri, 28 Jan 2011 07:26:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-01-28T07:26:10Z</dc:date>
    <item>
      <title>Oracle + Bulk UPSERT(Update or Insert)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240648#M28067</link>
      <description>Hi,&lt;BR /&gt;How to do a bulk upsert from one oracle table to other oracle table using talend?&lt;BR /&gt;Regards,&lt;BR /&gt;Babu.</description>
      <pubDate>Sat, 16 Nov 2024 13:07:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240648#M28067</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle + Bulk UPSERT(Update or Insert)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240649#M28068</link>
      <description>Hello 
&lt;BR /&gt;The job looks like:
&lt;BR /&gt;tOracleInput--main--&amp;gt;tOracleoutputBulkExec
&lt;BR /&gt;Let's us know if you have any trouble.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Tue, 25 Jan 2011 06:24:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240649#M28068</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-25T06:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle + Bulk UPSERT(Update or Insert)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240650#M28069</link>
      <description>Hi Shong, 
&lt;BR /&gt;This looks fine if action on data is either to insert or to update. "tOracleoutputBulkExec" doesn't support "insert or update". Only tOracleOutput has that option of "insert or update". Please find the details in the attached pics. 
&lt;BR /&gt;Regards, 
&lt;BR /&gt;Babu.</description>
      <pubDate>Tue, 25 Jan 2011 06:36:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240650#M28069</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-25T06:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle + Bulk UPSERT(Update or Insert)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240651#M28070</link>
      <description>Hi Shong, 
&lt;BR /&gt;Requirements: 
&lt;BR /&gt;I need to transfer a set of tables present in one oracle DB to other oracle DB. 
&lt;BR /&gt;Process: 
&lt;BR /&gt;1. Pick up a table(source table) from the list, transfer data to the target table. 
&lt;BR /&gt;2. During data transfer, if data is present in the target table then it should be updated else it should be inserted. 
&lt;BR /&gt;3. Finally counts should be captured like records inserted, records updated, records rejected. 
&lt;BR /&gt;repeat untill all source tables are transfered to target. 
&lt;BR /&gt;Please suggest how to achieve this? 
&lt;BR /&gt;Regards, 
&lt;BR /&gt;Babu</description>
      <pubDate>Tue, 25 Jan 2011 07:07:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240651#M28070</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-25T07:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle + Bulk UPSERT(Update or Insert)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240652#M28071</link>
      <description>Hello 
&lt;BR /&gt;The tOracleOutput can fit your request, there is no 'insert or update' action on tOracleoutputBulkExec. There are some global variables on tOracleOutput which counts the number of inserted records, updated records. Such as: 
&lt;BR /&gt;((Integer)globalMap.get("tOracleOutput_1_NB_LINE_INSERTED")) 
&lt;BR /&gt;tOracleInput--main--tOracleOutput_1 
&lt;BR /&gt; | 
&lt;BR /&gt;onsubjobok 
&lt;BR /&gt; | 
&lt;BR /&gt;tJava 
&lt;BR /&gt;on tJava, print the number of inserted records: 
&lt;BR /&gt;System.out.println(((Integer)globalMap.get("tOracleOutput_1_NB_LINE_INSERTED"))); 
&lt;BR /&gt;To use these global variable, just press ctrl+blank space, you will see a list of global variable, select the proper one. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Tue, 25 Jan 2011 08:00:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240652#M28071</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-25T08:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle + Bulk UPSERT(Update or Insert)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240653#M28072</link>
      <description>Hi,&lt;BR /&gt;If i have mutliple tables(say 10 tables) to be transfered then can i repeat this process using some kind of loop(one table at a time) or should i have individual set of such components for each table?&lt;BR /&gt;Regards,&lt;BR /&gt;Babu</description>
      <pubDate>Fri, 28 Jan 2011 06:42:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240653#M28072</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-28T06:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle + Bulk UPSERT(Update or Insert)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240654#M28073</link>
      <description>Hi Babu
&lt;BR /&gt;You can use txxxTableList to iterate each table.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 28 Jan 2011 07:26:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240654#M28073</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-28T07:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle + Bulk UPSERT(Update or Insert)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240655#M28074</link>
      <description>Hi shong,
&lt;BR /&gt;I have tried using tOracleTableList but it failed when it came to second table bcoz dynamically syncing columns for the tables is difficult.
&lt;BR /&gt;For the first table it will work fine when it comes to second table, only table name will be of the second table but columns will be of first table and it fails.
&lt;BR /&gt;How can we dynamically sync columns for the tables?
&lt;BR /&gt;Regards,
&lt;BR /&gt;Babu</description>
      <pubDate>Fri, 28 Jan 2011 12:49:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240655#M28074</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-28T12:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle + Bulk UPSERT(Update or Insert)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240656#M28075</link>
      <description>Hello
&lt;BR /&gt;Try to use the dynamic schema. see my screenshot.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Sun, 30 Jan 2011 08:11:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240656#M28075</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-30T08:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle + Bulk UPSERT(Update or Insert)</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240657#M28076</link>
      <description>Hi Shong,
&lt;BR /&gt;I am using Talend Open Studio (4.1.1). There is no dynamic schema option to select from the drop down provided. Please find the details in the picture attached. Is that option of dynamic schema available in this version of Talend? If not then how to proceed ahead. Thanks in advance.
&lt;BR /&gt;Regards,
&lt;BR /&gt;Babu</description>
      <pubDate>Sun, 30 Jan 2011 16:49:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-Bulk-UPSERT-Update-or-Insert/m-p/2240657#M28076</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-01-30T16:49:54Z</dc:date>
    </item>
  </channel>
</rss>

