<?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: Creating QVD file from multiple data sources in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-QVD-file-from-multiple-data-sources/m-p/1066259#M356455</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what I am trying to do.I want to create a single qvd file by joining amazon table and oracle table&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;LET vQVDName = 'Concept_Map';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// CONNECT TO AMAZON DATA SOURCE&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;$(Include=..\scripts\amazonrs.qvs);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$(vQVDName):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD&lt;/P&gt;&lt;P&gt; column1&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Select &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;column1 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;from rsdatabase &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;// CONNECT TO ORACLE DATA SOURCE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;$(Include=..\scripts\oracle.qvs);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; LEFT JOIN ($(vQVDName))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 13.3333px;"&gt; Select &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;column1,column2,column3 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;from oracledatabase &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// STORE TABLE INTO QVD FILE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; STORE $(vQVDName) INTO $(vQVDName).QVD (QVD);&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;DROP TABLES $(vQVDName);&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; DISCONNECT;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 May 2016 15:54:43 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-05-03T15:54:43Z</dc:date>
    <item>
      <title>Creating QVD file from multiple data sources</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-file-from-multiple-data-sources/m-p/1066257#M356453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to create QVD by joining &lt;STRONG&gt;Table 1&lt;/STRONG&gt; from Oracle and &lt;STRONG&gt;Table 2&lt;/STRONG&gt; from sql server or any other data source?If it is p[possible please share the syntax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 15:29:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-file-from-multiple-data-sources/m-p/1066257#M356453</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-03T15:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD file from multiple data sources</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-file-from-multiple-data-sources/m-p/1066258#M356454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The STORE command for creating a QVD file relies on your data all being in a single table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But QlikView is happy for you to create that table from 2 or more different sources using the appropriate JOIN command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 15:46:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-file-from-multiple-data-sources/m-p/1066258#M356454</guid>
      <dc:creator>richard_chilvers</dc:creator>
      <dc:date>2016-05-03T15:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD file from multiple data sources</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-file-from-multiple-data-sources/m-p/1066259#M356455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what I am trying to do.I want to create a single qvd file by joining amazon table and oracle table&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;LET vQVDName = 'Concept_Map';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// CONNECT TO AMAZON DATA SOURCE&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;$(Include=..\scripts\amazonrs.qvs);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$(vQVDName):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD&lt;/P&gt;&lt;P&gt; column1&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Select &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;column1 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;from rsdatabase &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;// CONNECT TO ORACLE DATA SOURCE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;$(Include=..\scripts\oracle.qvs);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; LEFT JOIN ($(vQVDName))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 13.3333px;"&gt; Select &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;column1,column2,column3 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;from oracledatabase &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// STORE TABLE INTO QVD FILE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; STORE $(vQVDName) INTO $(vQVDName).QVD (QVD);&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;DROP TABLES $(vQVDName);&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; DISCONNECT;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 15:54:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-file-from-multiple-data-sources/m-p/1066259#M356455</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-03T15:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD file from multiple data sources</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-file-from-multiple-data-sources/m-p/1066260#M356456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;You can make any joins and/or make any aggregations it's up to you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Basically y&lt;/SPAN&gt;ou can store data into QVD file when ever you wish.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax is simple:&lt;/P&gt;&lt;P&gt;STORE "tablename" INTO "path where you want to save the QVD and under what name";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;STORE invoice INTO E:\Documents\Invoice.qvd;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 16:04:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-file-from-multiple-data-sources/m-p/1066260#M356456</guid>
      <dc:creator>MindaugasBacius</dc:creator>
      <dc:date>2016-05-03T16:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD file from multiple data sources</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-file-from-multiple-data-sources/m-p/1066261#M356457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply but my actual question was can we create a QVD by joining two tables from different data sources (i.e one table from oracle and other table from amazon redshift and creating a qvd)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 16:19:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-file-from-multiple-data-sources/m-p/1066261#M356457</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-03T16:19:23Z</dc:date>
    </item>
  </channel>
</rss>

