<?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 Pulling data from QVD files and aggregating in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pulling-data-from-QVD-files-and-aggregating/m-p/1004121#M341151</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once we load the data to QVD files, how do we pull from it and aggregate into one table?&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Sep 2015 18:05:27 GMT</pubDate>
    <dc:creator>jleefjcapital</dc:creator>
    <dc:date>2015-09-22T18:05:27Z</dc:date>
    <item>
      <title>Pulling data from QVD files and aggregating</title>
      <link>https://community.qlik.com/t5/QlikView/Pulling-data-from-QVD-files-and-aggregating/m-p/1004121#M341151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once we load the data to QVD files, how do we pull from it and aggregate into one table?&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2015 18:05:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pulling-data-from-QVD-files-and-aggregating/m-p/1004121#M341151</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2015-09-22T18:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling data from QVD files and aggregating</title>
      <link>https://community.qlik.com/t5/QlikView/Pulling-data-from-QVD-files-and-aggregating/m-p/1004122#M341152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tmp:&lt;/P&gt;&lt;P&gt;LOAD * from yourqvd.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2,&lt;/P&gt;&lt;P&gt; SUM(Val1) as ValAggr&lt;/P&gt;&lt;P&gt;Resident Tmp&lt;/P&gt;&lt;P&gt;Group by &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp; Field1,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp; Field2;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;drop table Tmp; // you don´t need it anymore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2015 18:08:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pulling-data-from-QVD-files-and-aggregating/m-p/1004122#M341152</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2015-09-22T18:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling data from QVD files and aggregating</title>
      <link>https://community.qlik.com/t5/QlikView/Pulling-data-from-QVD-files-and-aggregating/m-p/1004123#M341153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If we have multiple tables to load to the QVD file, do we include multiple store statements?&amp;nbsp; Like this- &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Store Employees into [lib://QVD Folder/Datatable.QVD](qvd);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Store Employees_2 into [lib://QVD Folder/Datatable.QVD](qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Store Employees_3 into [lib://QVD Folder/Datatable.QVD](qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Store Employees_4 into [lib://QVD Folder/Datatable.QVD](qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2015 18:12:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pulling-data-from-QVD-files-and-aggregating/m-p/1004123#M341153</guid>
      <dc:creator>jleefjcapital</dc:creator>
      <dc:date>2015-09-22T18:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: Pulling data from QVD files and aggregating</title>
      <link>https://community.qlik.com/t5/QlikView/Pulling-data-from-QVD-files-and-aggregating/m-p/1004124#M341154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using QlikView or Sense?&lt;/P&gt;&lt;P&gt;Anyway, if you do multiple STORES to same QVD, only the last STORE remains.&lt;/P&gt;&lt;P&gt;A qvd can hold only one table and can´t be updated, you must create a table into memory that holds all data and then store it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further reading: &lt;A href="http://www.quickintelligence.co.uk/qlikview-qvd-files/" title="http://www.quickintelligence.co.uk/qlikview-qvd-files/"&gt;http://www.quickintelligence.co.uk/qlikview-qvd-files/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.learnallbi.com/qvds-in-qlikview/" title="http://www.learnallbi.com/qvds-in-qlikview/"&gt;QVDs in Qlikview | Learn QlikView&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.analyticsvidhya.com/blog/2014/08/qvds-qlikview-application-efficient/" title="http://www.analyticsvidhya.com/blog/2014/08/qvds-qlikview-application-efficient/"&gt;http://www.analyticsvidhya.com/blog/2014/08/qvds-qlikview-application-efficient/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://stackoverflow.com/questions/25521936/storing-multiple-tables-into-a-qvd-in-qlikview" title="http://stackoverflow.com/questions/25521936/storing-multiple-tables-into-a-qvd-in-qlikview"&gt;http://stackoverflow.com/questions/25521936/storing-multiple-tables-into-a-qvd-in-qlikview&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2015 18:17:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pulling-data-from-QVD-files-and-aggregating/m-p/1004124#M341154</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2015-09-22T18:17:05Z</dc:date>
    </item>
  </channel>
</rss>

