<?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 How to Load Data from multiple tables and store it in single QVD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-Load-Data-from-multiple-tables-and-store-it-in-single-QVD/m-p/428781#M699887</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have three tables which i have joined with a primary key and i would like to have different columns across these tables that i require to form One single QVD. Does anyone know any option or Command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Oct 2012 13:19:17 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-10-18T13:19:17Z</dc:date>
    <item>
      <title>How to Load Data from multiple tables and store it in single QVD</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Load-Data-from-multiple-tables-and-store-it-in-single-QVD/m-p/428781#M699887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have three tables which i have joined with a primary key and i would like to have different columns across these tables that i require to form One single QVD. Does anyone know any option or Command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2012 13:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Load-Data-from-multiple-tables-and-store-it-in-single-QVD/m-p/428781#M699887</guid>
      <dc:creator />
      <dc:date>2012-10-18T13:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to Load Data from multiple tables and store it in single QVD</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Load-Data-from-multiple-tables-and-store-it-in-single-QVD/m-p/428782#M699888</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 already did a JOIN, you then only have ONE table in your model. Now do a STORE specifying the name of the first table (not those that where JOINed) and the file you want to create.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_1350566606569290" jivemacro_uid="_1350566606569290"&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM File1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOIN LOAD *&lt;/P&gt;&lt;P&gt;FROM File2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOIN LOAD * &lt;/P&gt;&lt;P&gt;FROM File3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Table1 INTO FileAll.qvd (qvd);&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2012 13:24:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Load-Data-from-multiple-tables-and-store-it-in-single-QVD/m-p/428782#M699888</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-10-18T13:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to Load Data from multiple tables and store it in single QVD</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Load-Data-from-multiple-tables-and-store-it-in-single-QVD/m-p/428783#M699889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the advise but i know this one and i have tried also but the issue is this that i want specific field to be saved, which i am unable to do so.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2012 13:29:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Load-Data-from-multiple-tables-and-store-it-in-single-QVD/m-p/428783#M699889</guid>
      <dc:creator />
      <dc:date>2012-10-18T13:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to Load Data from multiple tables and store it in single QVD</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Load-Data-from-multiple-tables-and-store-it-in-single-QVD/m-p/428784#M699891</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Store field1,field2 from mytable into filename.qvd(qvd);&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;Check once in the tableviewer before save the qvd about fieldname and tablename.&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;Hope that helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2012 13:39:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Load-Data-from-multiple-tables-and-store-it-in-single-QVD/m-p/428784#M699891</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-10-18T13:39:25Z</dc:date>
    </item>
  </channel>
</rss>

