<?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: Joining multiple residents taking forever in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Joining-multiple-residents-taking-forever/m-p/907693#M652254</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you attach sample data and your expected output it would be easier to solve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Aug 2015 08:04:27 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2015-08-03T08:04:27Z</dc:date>
    <item>
      <title>Joining multiple residents taking forever</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-multiple-residents-taking-forever/m-p/907692#M652253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think i am doing something wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So basically this is a follow up questions to this thread:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/174944"&gt;Bar Diagram - Each bar another function&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here was a solution which worked for me - a concatenated table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ControlNumber:&lt;/P&gt;&lt;P&gt;LOAD personids,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'ControlNumber1' as ControlNumber&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;RESIDENT TABLE_FROM_FILE1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;WHERE hair_color = 'blond';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (ControlNumber)&lt;/P&gt;&lt;P&gt;LOAD personids,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'ControlNumber2' as ControlNumber&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;RESIDENT TABLE_FROM_FILE1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;WHERE hair_color = 'blond' AND eyes='blue';&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;So far so good. Now unfortunately, i need to load Value snot only from one Table but from multiple tables.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;So basically what i would need is something like this (joining multiple resident tables):&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (ControlNumber)&lt;/P&gt;&lt;P&gt;LOAD personids,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'ControlNumber2' as ControlNumber&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;RESIDENT T1 JOIN T2&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;WHERE &lt;SPAN style="color: #ff0000;"&gt;t1.hair_color = 'blond' AND t2.eyes='blue';&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Now i found some solutions but those solutions make my Qlik-View crash.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;For instance if i do the following:&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P&gt;tempx:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; t1.PID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resident T1; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOIN(tempx) LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; t2.PID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resident T2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ControlNumber:&lt;/P&gt;&lt;P&gt;LOAD personids,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'ControlNumber1' as ControlNumber&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;RESIDENT tempx&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;WHERE hair_color = 'blond';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (ControlNumber)&lt;/P&gt;&lt;P&gt;LOAD personids,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'ControlNumber2' as ControlNumber&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;RESIDENT tempx&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;WHERE hair_color = 'blond' AND eyes='blue';&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Actually i tried out a lot of different ways how to solve this but most of the time my attempts of joining those tables lead to, like i said, Qlik-View crashing. Like i said - i can easily load the contents of one table, but at the moment not sure how to get contents from both tables.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Best Regards,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 07:51:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-multiple-residents-taking-forever/m-p/907692#M652253</guid>
      <dc:creator />
      <dc:date>2015-08-03T07:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Joining multiple residents taking forever</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-multiple-residents-taking-forever/m-p/907693#M652254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you attach sample data and your expected output it would be easier to solve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 08:04:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-multiple-residents-taking-forever/m-p/907693#M652254</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-08-03T08:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Joining multiple residents taking forever</title>
      <link>https://community.qlik.com/t5/QlikView/Joining-multiple-residents-taking-forever/m-p/907694#M652255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry for bothering - i just fixed it - it seems i had to drop the temp-table after loading it as a resident because it seemed to created circles which made QV crash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So basically the problem is solved. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 08:07:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Joining-multiple-residents-taking-forever/m-p/907694#M652255</guid>
      <dc:creator />
      <dc:date>2015-08-03T08:07:23Z</dc:date>
    </item>
  </channel>
</rss>

