<?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: How to perform a CROSS JOIN with Talend? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-perform-a-CROSS-JOIN-with-Talend/m-p/2234861#M24077</link>
    <description>Never tried before, but what if you use a tMap with these 2 tables, 1 one as main and 1 as lookup, then no join in the tMap and an output flow based on fields from these tables?</description>
    <pubDate>Mon, 29 May 2017 17:56:48 GMT</pubDate>
    <dc:creator>TRF</dc:creator>
    <dc:date>2017-05-29T17:56:48Z</dc:date>
    <item>
      <title>How to perform a CROSS JOIN with Talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-perform-a-CROSS-JOIN-with-Talend/m-p/2234860#M24076</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I have two row links from two different tables, and need to combined them in a Cartesian way. Any idea?&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Could iterate link (instead of row link) helps me, somehow?&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Lorenzo&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;---&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;The &lt;/SPAN&gt;&lt;STRONG&gt;SQL CROSS JOIN&lt;/STRONG&gt;&lt;SPAN&gt; produces a result set which is the number of rows in the first table multiplied by the number of rows in the second table&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;This kind of result is called as Cartesian Product.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 May 2017 16:30:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-perform-a-CROSS-JOIN-with-Talend/m-p/2234860#M24076</guid>
      <dc:creator>Lorenzo5</dc:creator>
      <dc:date>2017-05-29T16:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to perform a CROSS JOIN with Talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-perform-a-CROSS-JOIN-with-Talend/m-p/2234861#M24077</link>
      <description>Never tried before, but what if you use a tMap with these 2 tables, 1 one as main and 1 as lookup, then no join in the tMap and an output flow based on fields from these tables?</description>
      <pubDate>Mon, 29 May 2017 17:56:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-perform-a-CROSS-JOIN-with-Talend/m-p/2234861#M24077</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-29T17:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to perform a CROSS JOIN with Talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-perform-a-CROSS-JOIN-with-Talend/m-p/2234862#M24078</link>
      <description>&lt;P&gt;It works as expected:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 663px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Luji.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158045i3E2759C9616DF291/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Luji.png" alt="0683p000009Luji.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Got 3 lines in main table ("aaaaa", "bbbbb", "ccccc") and 2 lines in the lookup ("AAAAA", "BBBBB").&lt;/P&gt; 
&lt;P&gt;The result contains 6 lines:&lt;/P&gt; 
&lt;PRE&gt;Starting job test at 20:01 29/05/2017.

[statistics] connecting to socket on port 4063
[statistics] connected
.-----+-----.
|tLogRow_35 |
|=----+----=|
|aaa  |bbb  |
|=----+----=|
|aaaaa|AAAAA|
|aaaaa|BBBBB|
|bbbb |AAAAA|
|bbbb |BBBBB|
|ccccc|AAAAA|
|ccccc|BBBBB|
'-----+-----'

[statistics] disconnected
Job test ended at 20:01 29/05/2017. [exit code=0]&lt;/PRE&gt; 
&lt;P&gt;Hope this helps.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 May 2017 19:05:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-perform-a-CROSS-JOIN-with-Talend/m-p/2234862#M24078</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-29T19:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to perform a CROSS JOIN with Talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-perform-a-CROSS-JOIN-with-Talend/m-p/2234863#M24079</link>
      <description>&lt;A href="https://community.qlik.com/s/profile/null"&gt;@lorenzolucioni&lt;/A&gt;, does this helps you?</description>
      <pubDate>Tue, 30 May 2017 20:30:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-perform-a-CROSS-JOIN-with-Talend/m-p/2234863#M24079</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-05-30T20:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to perform a CROSS JOIN with Talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-perform-a-CROSS-JOIN-with-Talend/m-p/2234864#M24080</link>
      <description>Yes, thanks.&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Jun 2017 08:39:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-perform-a-CROSS-JOIN-with-Talend/m-p/2234864#M24080</guid>
      <dc:creator>Lorenzo5</dc:creator>
      <dc:date>2017-06-06T08:39:28Z</dc:date>
    </item>
  </channel>
</rss>

