<?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: Create a QVD instead of SQL-table and store the data in QVD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866204#M1000250</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As you are creating the temp tables using below query you can directly run this query and store the data into the qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;select&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;c&lt;/SPAN&gt; &lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;CustomerID&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;p&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;productID&lt;/SPAN&gt; &lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;p&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;.&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;ProductName&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;from&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;Customers&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;c&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;Products&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;p;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;Store Data into Path\TempTable.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;drop table Data;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 21 Jun 2015 07:16:48 GMT</pubDate>
    <dc:creator>Kushal_Chawda</dc:creator>
    <dc:date>2015-06-21T07:16:48Z</dc:date>
    <item>
      <title>Create a QVD instead of SQL-table and store the data in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866198#M1000244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am creating temp tables in SQL for many reasons. Is it possible to create same tables as QVD and store as QVD? Here I would like to create QVD called 'tmpProductCustomer1'. Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/////////////////Sample query I am using////////////&lt;/P&gt;&lt;P align="left" style="color: #000000; font-family: Tahoma; font-size: medium;"&gt;&lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;create&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;table&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;tmpProductCustomer1&lt;/SPAN&gt; &lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P align="left" style="color: #000000; font-family: Tahoma; font-size: medium;"&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;CustomerID&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;int&lt;/SPAN&gt; &lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P align="left" style="color: #000000; font-family: Tahoma; font-size: medium;"&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;ProductID&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;int&lt;/SPAN&gt; &lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P align="left" style="color: #000000; font-family: Tahoma; font-size: medium;"&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;ProductName&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;varchar&lt;/SPAN&gt; &lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #010101; font-size: 9pt; font-family: Consolas;"&gt;50&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P align="left" style="color: #000000; font-family: Tahoma; font-size: medium;"&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P align="left" style="color: #000000; font-family: Tahoma; font-size: medium;"&gt;&lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;insert&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;into&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;tmpProductCustomer1&lt;/SPAN&gt;&lt;/P&gt;&lt;P align="left" style="color: #000000; font-family: Tahoma; font-size: medium;"&gt;&lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;select&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;c&lt;/SPAN&gt; &lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;CustomerID&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;p&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;productID&lt;/SPAN&gt; &lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;p&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;.&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;ProductName&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;from&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;Customers&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;c&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;Products&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;p&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/////////////////////////////////////////////////////////////////&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jun 2015 03:50:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866198#M1000244</guid>
      <dc:creator />
      <dc:date>2015-06-21T03:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Create a QVD instead of SQL-table and store the data in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866199#M1000245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean you want want to create your own data in qlikview then then&amp;nbsp; store them into qvds? Yes you can using Inline function &lt;/P&gt;&lt;P&gt;or you want pull&amp;nbsp; temp table present in sql db then convert them into qvds? Yes you can &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jun 2015 04:04:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866199#M1000245</guid>
      <dc:creator>swarup_malli</dc:creator>
      <dc:date>2015-06-21T04:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Create a QVD instead of SQL-table and store the data in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866200#M1000246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1st option. I want to get my data from sql tables and create temp table in Qlikview and store as QVD. (by that I can avoid create temp table in SQL). Is it Inline is the best option here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jun 2015 04:09:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866200#M1000246</guid>
      <dc:creator />
      <dc:date>2015-06-21T04:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: Create a QVD instead of SQL-table and store the data in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866201#M1000247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create you own data using INLINE function&amp;nbsp; which involves lot of typing :- )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also create qvd's from views &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you could do something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could run a query against the tables present in the DB, then export the result into excel .Use that excel( You could convert it into QVD for better performace ) as your source&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jun 2015 04:18:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866201#M1000247</guid>
      <dc:creator>swarup_malli</dc:creator>
      <dc:date>2015-06-21T04:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Create a QVD instead of SQL-table and store the data in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866202#M1000248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can create QVDs directly for temp tables in qlikview without creating them in SQL. First connect to database using ODBC or OLEDB interface. Then the following syntax would work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmpProductCustomer1:&lt;/P&gt;&lt;P&gt;load CustomerID,&lt;/P&gt;&lt;P&gt;ProductID,&lt;/P&gt;&lt;P&gt;Productname;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sql select CustomerID,ProductID,Productname from customer;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store * into &lt;SPAN style="font-size: 13.3333330154419px;"&gt;tmpProductCustomer1.qvd(qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here we are using preceding load to get the data from SQL to Qlikview and 'Store' function to further save data into QVDs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jun 2015 04:34:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866202#M1000248</guid>
      <dc:creator />
      <dc:date>2015-06-21T04:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Create a QVD instead of SQL-table and store the data in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866203#M1000249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may use the following script to create the QVD,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;Load CustomerID, productID, ProductName;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #0000ff;"&gt;SQL select&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;c&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #808080;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;CustomerID&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #808080;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;p&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #808080;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;productID&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #808080;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;p&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #808080;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;ProductName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #0000ff;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;Customers&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;c&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #808080;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;Products&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;p;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;Store temp into &lt;SPAN style="color: #008080; font-family: Consolas; font-size: 12px;"&gt;tmpProductCustomer1.qvd (qvd);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;&lt;SPAN style="color: #008080; font-family: Consolas; font-size: 12px;"&gt;Drop Table Temp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jun 2015 05:07:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866203#M1000249</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2015-06-21T05:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Create a QVD instead of SQL-table and store the data in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866204#M1000250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As you are creating the temp tables using below query you can directly run this query and store the data into the qvd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;select&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;c&lt;/SPAN&gt; &lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;CustomerID&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;p&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;productID&lt;/SPAN&gt; &lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;p&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;.&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;ProductName&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; font-size: 9pt; font-family: Consolas;"&gt;from&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;Customers&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;c&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-size: 9pt; font-family: Consolas;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;Products&lt;/SPAN&gt; &lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;p;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;Store Data into Path\TempTable.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-size: 9pt; font-family: Consolas;"&gt;drop table Data;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jun 2015 07:16:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866204#M1000250</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-06-21T07:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: Create a QVD instead of SQL-table and store the data in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866205#M1000251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tmpProductCustomer1 :&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F1, F2, F3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CustomerID, ProductID , ProductName &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, 01, iron&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;STORE tmpProductCustomer1&amp;nbsp; into sampleqvd.qvd(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jun 2015 20:00:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866205#M1000251</guid>
      <dc:creator>pratap6699</dc:creator>
      <dc:date>2015-06-21T20:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Create a QVD instead of SQL-table and store the data in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866206#M1000252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create the QVD from select query by using STORE command, please find below the sample script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #0000ff;"&gt;select&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;c&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #808080;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;CustomerID&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #808080;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;p&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #808080;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;productID&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #808080;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;p&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #808080;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;ProductName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #0000ff;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;Customers&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;c&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #808080;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: Consolas; color: #008080;"&gt;Products&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Tahoma; font-size: medium;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008080; font-family: Consolas; font-size: 9pt; line-height: 1.5em;"&gt;p;n.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-family: Consolas; font-size: 9pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-family: Consolas; font-size: 9pt; line-height: 1.5em;"&gt;STORE Data FROM QVDFileName.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-family: Consolas; font-size: 9pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-family: Consolas; font-size: 9pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-family: Consolas; font-size: 9pt; line-height: 1.5em;"&gt;Hope this helps you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-family: Consolas; font-size: 9pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-family: Consolas; font-size: 9pt; line-height: 1.5em;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008080; font-family: Consolas; font-size: 9pt; line-height: 1.5em;"&gt;Jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 02:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-QVD-instead-of-SQL-table-and-store-the-data-in-QVD/m-p/866206#M1000252</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-06-22T02:02:26Z</dc:date>
    </item>
  </channel>
</rss>

