<?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: Equivalent to Ab Initio Join with DB Component in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263658#M43738</link>
    <description>Can you give precise details about what you really want to do ?</description>
    <pubDate>Fri, 28 Nov 2008 18:55:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-11-28T18:55:18Z</dc:date>
    <item>
      <title>Equivalent to Ab Initio Join with DB Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263655#M43735</link>
      <description>Hi,  
&lt;BR /&gt;
&lt;BR /&gt;I have a flow of data that I need to join to a database,  selecting * where database.field = input.field
&lt;BR /&gt;
&lt;BR /&gt;I am using informix
&lt;BR /&gt;
&lt;BR /&gt;Any ideas please,
&lt;BR /&gt;
&lt;BR /&gt;John.</description>
      <pubDate>Sat, 16 Nov 2024 14:08:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263655#M43735</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Ab Initio Join with DB Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263656#M43736</link>
      <description>This can be done very easily with the tMap or with the tJoin.&lt;BR /&gt;Regards,</description>
      <pubDate>Fri, 28 Nov 2008 14:08:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263656#M43736</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-28T14:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Ab Initio Join with DB Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263657#M43737</link>
      <description>Thanks for the response
&lt;BR /&gt;
&lt;BR /&gt;Surely what you are suggesting would mean me reading the whole of the required table into the tjoin or tmap, and not just selecting the required record from the database ?</description>
      <pubDate>Fri, 28 Nov 2008 14:19:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263657#M43737</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-28T14:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Ab Initio Join with DB Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263658#M43738</link>
      <description>Can you give precise details about what you really want to do ?</description>
      <pubDate>Fri, 28 Nov 2008 18:55:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263658#M43738</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-28T18:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Ab Initio Join with DB Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263659#M43739</link>
      <description>Thanks for the response, 
&lt;BR /&gt; 
&lt;BR /&gt;I have a file being read that contains a single column (row_id), for each record in the flow I want to query a database for something like; 
&lt;BR /&gt; 
&lt;BR /&gt;select rating_id from rating where row_id = the row_id from the input flow 
&lt;BR /&gt; 
&lt;BR /&gt;The output flow will look like, row_id, rating_id 
&lt;BR /&gt; 
&lt;BR /&gt;You initially suggested a join or map, but this would mean reading all the records from the database ? If the table has 3.5 million records but the flow only 100 then this would not be very efficient. 
&lt;BR /&gt; 
&lt;BR /&gt;I hope this makes sense, appreciate your help.</description>
      <pubDate>Sun, 30 Nov 2008 14:13:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263659#M43739</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-30T14:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Ab Initio Join with DB Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263660#M43740</link>
      <description>You're right, tMap load all your lookup table in memory or on disk. 
&lt;BR /&gt;I perfectly understand your request. The solution to resolve your problem is to use the difference between iterate and flow links : 
&lt;BR /&gt;To anwser to your request, you should design a job like 
&lt;BR /&gt;tFileInputDelimited -&amp;gt; tFlowToIterate -&amp;gt; (iterate) -&amp;gt; tMySQLinput -&amp;gt; ... 
&lt;BR /&gt;HTH,</description>
      <pubDate>Sun, 30 Nov 2008 22:46:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263660#M43740</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-30T22:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Equivalent to Ab Initio Join with DB Component</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263661#M43741</link>
      <description>yep,  this works fine
&lt;BR /&gt;
&lt;BR /&gt;thanks for your help</description>
      <pubDate>Thu, 11 Dec 2008 08:54:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Equivalent-to-Ab-Initio-Join-with-DB-Component/m-p/2263661#M43741</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-12-11T08:54:56Z</dc:date>
    </item>
  </channel>
</rss>

