<?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: do we have efficient load practice like subquery for large data? in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971396#M11264</link>
    <description>&lt;P&gt;my case ...is as long as I join , it goes forever...and seems to crash QMC...as well...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Aug 2022 15:21:50 GMT</pubDate>
    <dc:creator>coloful_architect</dc:creator>
    <dc:date>2022-08-22T15:21:50Z</dc:date>
    <item>
      <title>do we have efficient load practice like subquery for large data?</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971370#M11259</link>
      <description>&lt;P&gt;I have quite large size of data...in a form of QVD, it is already 2.3 G.&lt;/P&gt;
&lt;P&gt;simplified data structure is like (let 's call it main table)&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;main table:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;company&lt;/P&gt;
&lt;P&gt;product&amp;nbsp;&lt;/P&gt;
&lt;P&gt;measurements fields&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanna narrow down the&amp;nbsp; entire data into a smaller segment where only encompass company A's product portfolio.&lt;/P&gt;
&lt;P&gt;in SQL , it is a sub query like&lt;/P&gt;
&lt;P&gt;select * from main table where product =(select product from table A&amp;nbsp; where company='company A').&lt;/P&gt;
&lt;P&gt;At qlik load, I tried resident load to get a flag field of product just for company A and then inner join with the main table.&lt;/P&gt;
&lt;P&gt;but it seems, due to the size of file, as long as I run join, it goes forever.&lt;/P&gt;
&lt;P&gt;if I just run without join, it goes through.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;do we have something like subquery at qlik load scirpt,? or any other alternative approach could solve my problem?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 14:41:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971370#M11259</guid>
      <dc:creator>coloful_architect</dc:creator>
      <dc:date>2022-08-22T14:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: do we have efficient load practice like subquery for large data?</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971375#M11260</link>
      <description>&lt;P&gt;Not sure but what if you just create new&amp;nbsp; table as such -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ProductA_table:&lt;/P&gt;
&lt;P&gt;Reducedtable:&lt;/P&gt;
&lt;P&gt;Load *&lt;/P&gt;
&lt;P&gt;resident maintable&lt;/P&gt;
&lt;P&gt;Where Company= 'CompanyA'&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 14:54:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971375#M11260</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2022-08-22T14:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: do we have efficient load practice like subquery for large data?</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971376#M11261</link>
      <description>&lt;P&gt;how about:&lt;/P&gt;
&lt;P&gt;load&amp;nbsp;&lt;/P&gt;
&lt;P&gt;product&lt;/P&gt;
&lt;P&gt;from your file&lt;/P&gt;
&lt;P&gt;where company = 'companyA';&lt;/P&gt;
&lt;P&gt;load * from your file where exists (product);&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 14:56:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971376#M11261</guid>
      <dc:creator>martinpohl</dc:creator>
      <dc:date>2022-08-22T14:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: do we have efficient load practice like subquery for large data?</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971382#M11262</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Table1:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Load distinct product from table A&amp;nbsp; where company='company A'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Left Join (Table1)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Load&amp;nbsp;distinct * from main table;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Above left join is based on Product field.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope this helps&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 15:07:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971382#M11262</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2022-08-22T15:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: do we have efficient load practice like subquery for large data?</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971396#M11264</link>
      <description>&lt;P&gt;my case ...is as long as I join , it goes forever...and seems to crash QMC...as well...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 15:21:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971396#M11264</guid>
      <dc:creator>coloful_architect</dc:creator>
      <dc:date>2022-08-22T15:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: do we have efficient load practice like subquery for large data?</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971410#M11266</link>
      <description>&lt;P&gt;Have you checked for Common key field for example Product so there should be some id like Productid&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or you should use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Autogenerate(Product) as Product in both the tables.&lt;/P&gt;
&lt;P&gt;and also you should use only Required column from Big QVD. i.e 2.3 GB&lt;/P&gt;
&lt;P&gt;May this helps&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 15:34:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971410#M11266</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2022-08-22T15:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: do we have efficient load practice like subquery for large data?</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971443#M11267</link>
      <description>&lt;P&gt;thanks for your time...it turns out where exist works .....but still wrapping my head around why join does not work.&lt;/P&gt;
&lt;P&gt;I have my table all set up as your suggestion says&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2022 16:40:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/do-we-have-efficient-load-practice-like-subquery-for-large-data/m-p/1971443#M11267</guid>
      <dc:creator>coloful_architect</dc:creator>
      <dc:date>2022-08-22T16:40:48Z</dc:date>
    </item>
  </channel>
</rss>

