<?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: tOracleInput in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tOracleInput/m-p/2200365#M2876</link>
    <description>Hi 
&lt;BR /&gt;Use context variables for db connection parameters, and use a tfixedFlowInput to generate the variable value. 
&lt;BR /&gt;tFixedFlowInput--main(row1)--tFlowToIterate--tjava--oncomponentok--&amp;gt;tOracleInput--tUnite--&amp;gt; 
&lt;BR /&gt; 
&lt;BR /&gt;on tFixedFlowInput, select 'Use inline content' model, and input the variable value like 
&lt;BR /&gt;host1;database_name1;port1;username1;password1 
&lt;BR /&gt;host2;database_name2;port2;username2;password2 
&lt;BR /&gt;host3;database_name3;port3;username3;password3 
&lt;BR /&gt; 
&lt;BR /&gt;on tjava: 
&lt;BR /&gt;context.host=(String)globalMap.get("row1.host") 
&lt;BR /&gt;....the same for other parameters... 
&lt;BR /&gt; 
&lt;BR /&gt;Regards 
&lt;BR /&gt;Shong</description>
    <pubDate>Thu, 17 Oct 2019 10:59:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-10-17T10:59:30Z</dc:date>
    <item>
      <title>tOracleInput</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleInput/m-p/2200364#M2875</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello, I'm&amp;nbsp;having&amp;nbsp;three identical databases in termes of&amp;nbsp;structure&amp;nbsp;(tables&amp;nbsp;and&amp;nbsp;columns),&amp;nbsp;one for each&amp;nbsp;country.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Example:&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;the&amp;nbsp;table&amp;nbsp;customer&amp;nbsp;exists&amp;nbsp;in the three&amp;nbsp;databases&amp;nbsp;with&amp;nbsp;same&amp;nbsp;fields.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN class="s-bl-t"&gt;&amp;nbsp;Only&lt;/SPAN&gt;&amp;nbsp;the&amp;nbsp;content&amp;nbsp;is&amp;nbsp;different&amp;nbsp;because every&amp;nbsp;country&amp;nbsp;has&amp;nbsp;its own client.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN class="s-rg-t"&gt;i&lt;/SPAN&gt;&amp;nbsp;want&amp;nbsp;to&amp;nbsp;load&amp;nbsp;the three&amp;nbsp;tables&amp;nbsp;in on the&amp;nbsp;single&amp;nbsp;table&amp;nbsp;in the&amp;nbsp;destination, normally I would use three&amp;nbsp;&lt;SPAN class="s-rg-t"&gt;tOracleInput&lt;/SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then&amp;nbsp;add&amp;nbsp;a&amp;nbsp;value&amp;nbsp;to&amp;nbsp;indicate&amp;nbsp;the country name in a tamp for each of the&amp;nbsp;three&amp;nbsp;and&amp;nbsp;then&amp;nbsp;concatenate all in a&amp;nbsp;&lt;SPAN class="s-rg-t"&gt;tUnite&lt;/SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But since the three&amp;nbsp;databases&amp;nbsp;have&amp;nbsp;the same exactly&amp;nbsp;architecture&lt;SPAN class="s-bl-t"&gt;,I&lt;/SPAN&gt;&amp;nbsp;want&amp;nbsp;to&amp;nbsp;do&amp;nbsp;it&amp;nbsp;in one single&amp;nbsp;&lt;SPAN class="s-rg-t"&gt;tOracle&lt;/SPAN&gt;&amp;nbsp;input and&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;execute&amp;nbsp;the same&amp;nbsp;&lt;SPAN class="s-rg-t"&gt;sql&lt;/SPAN&gt;&amp;nbsp;statement&amp;nbsp;"select&amp;nbsp;code, nom from the&amp;nbsp;customer" but on the three&amp;nbsp;different&amp;nbsp;databases.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN class="s-rg-t"&gt;i&lt;/SPAN&gt;&amp;nbsp;though about&amp;nbsp;using&amp;nbsp;context variable and&amp;nbsp;&lt;SPAN class="s-rg-t"&gt;tLoop&lt;/SPAN&gt;&amp;nbsp;but&amp;nbsp;&lt;SPAN class="s-rg-t"&gt;i&lt;/SPAN&gt;&amp;nbsp;am having problems to correctly design a functional job.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:23:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleInput/m-p/2200364#M2875</guid>
      <dc:creator>Mehdi_Mhedhbi2</dc:creator>
      <dc:date>2024-11-16T04:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleInput</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleInput/m-p/2200365#M2876</link>
      <description>Hi 
&lt;BR /&gt;Use context variables for db connection parameters, and use a tfixedFlowInput to generate the variable value. 
&lt;BR /&gt;tFixedFlowInput--main(row1)--tFlowToIterate--tjava--oncomponentok--&amp;gt;tOracleInput--tUnite--&amp;gt; 
&lt;BR /&gt; 
&lt;BR /&gt;on tFixedFlowInput, select 'Use inline content' model, and input the variable value like 
&lt;BR /&gt;host1;database_name1;port1;username1;password1 
&lt;BR /&gt;host2;database_name2;port2;username2;password2 
&lt;BR /&gt;host3;database_name3;port3;username3;password3 
&lt;BR /&gt; 
&lt;BR /&gt;on tjava: 
&lt;BR /&gt;context.host=(String)globalMap.get("row1.host") 
&lt;BR /&gt;....the same for other parameters... 
&lt;BR /&gt; 
&lt;BR /&gt;Regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Thu, 17 Oct 2019 10:59:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleInput/m-p/2200365#M2876</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-17T10:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: tOracleInput</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tOracleInput/m-p/2200366#M2877</link>
      <description>&lt;P&gt;thx you &lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 15:06:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tOracleInput/m-p/2200366#M2877</guid>
      <dc:creator>Mehdi_Mhedhbi2</dc:creator>
      <dc:date>2019-10-21T15:06:44Z</dc:date>
    </item>
  </channel>
</rss>

