<?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 qvd in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/qvd/m-p/418471#M155672</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; can we create a qvd with fields of multiple tables?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Feb 2013 08:28:10 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-02-08T08:28:10Z</dc:date>
    <item>
      <title>qvd</title>
      <link>https://community.qlik.com/t5/QlikView/qvd/m-p/418471#M155672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; can we create a qvd with fields of multiple tables?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2013 08:28:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qvd/m-p/418471#M155672</guid>
      <dc:creator />
      <dc:date>2013-02-08T08:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: qvd</title>
      <link>https://community.qlik.com/t5/QlikView/qvd/m-p/418472#M155673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No. See reference to Store command, page 267 of Reference Manual (v11 SR1):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Store&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;A QVD or a CSV file can be created by a store statement in the script. The statement will create an explicitly named QVD or CSV file. &lt;STRONG&gt;The statement can only export fields from one logical table.&lt;/STRONG&gt; The text values are exported to the CSV file in UTF-8 format. A delimiter can be specified, see Load (page 246). The store&lt;/P&gt;&lt;P&gt;statement to a CSV file does not support BIFF export.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2013 08:48:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qvd/m-p/418472#M155673</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-08T08:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: qvd</title>
      <link>https://community.qlik.com/t5/QlikView/qvd/m-p/418473#M155674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But you can of course create a table in the script with data from multiple tables and then export this table as one QVD file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2013 09:02:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qvd/m-p/418473#M155674</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-08T09:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: qvd</title>
      <link>https://community.qlik.com/t5/QlikView/qvd/m-p/418474#M155675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jonathan is right about the Store statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, it is also possible to create a QVD by exporting a straight table from the GUI and choosing "QVD" as export format. And here you can have fields from multiple tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2013 09:04:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qvd/m-p/418474#M155675</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2013-02-08T09:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: qvd</title>
      <link>https://community.qlik.com/t5/QlikView/qvd/m-p/418475#M155676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you already did join.&lt;/P&gt;&lt;P&gt;and you have only one tablein your data model.&lt;/P&gt;&lt;P&gt;now store that table which are not joined for making a qvd&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from table1;&lt;/P&gt;&lt;P&gt;join &lt;/P&gt;&lt;P&gt;load * from table 2;&lt;/P&gt;&lt;P&gt;join&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from table3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;STORE T1 INTO tableQ1.qvd (qvd);&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;then you can make one qvd of&amp;nbsp; multiple tables .&lt;/P&gt;&lt;P&gt;hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2013 09:06:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/qvd/m-p/418475#M155676</guid>
      <dc:creator>er_mohit</dc:creator>
      <dc:date>2013-02-08T09:06:27Z</dc:date>
    </item>
  </channel>
</rss>

