<?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's in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557486#M1132647</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Nov 2013 09:14:36 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-11-01T09:14:36Z</dc:date>
    <item>
      <title>Creating QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557483#M1132644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi would anyone know how to create a QVD and what i need to do? any sources that can help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Oct 2013 16:33:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557483#M1132644</guid>
      <dc:creator />
      <dc:date>2013-10-31T16:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557484#M1132645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, first place I would look into would be the Help file or reference manual.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the Help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1&gt;&lt;A name="kanchor948"&gt;&lt;/A&gt;QVD Files&lt;/H1&gt;&lt;P&gt;A QVD (QlikView Data) file is a file containing a table of data exported from QlikView. QVD is a native QlikView format and can only be written to and read by QlikView. The file format is optimized for speed when reading data from a QlikView script but it is still very compact. Reading data from a QVD file is typically 10-100 times faster than reading from other data sources.&lt;/P&gt;&lt;P&gt;QVD files can be read in two modes: standard (fast) and optimized (faster). The selected mode is determined automatically by the QlikView script engine. Optimized mode can be utilized only when all loaded fields are read without any transformations (formulas acting upon the fields), though the renaming of fields is allowed. A WHERE clause causing QlikView to unpack the records will also disable the optimized load.&lt;/P&gt;&lt;P&gt;A QVD file holds exactly one data table and consists of three parts:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;A well formed XML header (in UTF-8 char set) describing the fields in the table, the layout of the subsequent information and some other meta-data.&lt;/LI&gt;&lt;LI&gt;Symbol tables in a byte stuffed format.&lt;/LI&gt;&lt;LI&gt;Actual table data in a bit-stuffed format.&lt;/LI&gt;&lt;/OL&gt;&lt;H2&gt;Purpose of QVD Files&lt;/H2&gt;&lt;P&gt;QVD files can be used for many purposes. At least four major uses can be easily identified. More than one may apply in any given situation:&lt;/P&gt;&lt;H3&gt;Increasing Load Speed&lt;/H3&gt;&lt;P style="margin-top: 4pt;"&gt;By buffering non-changing or slowly changing blocks of input data in QVD files, script execution becomes considerably faster for large data sets.&lt;/P&gt;&lt;H3&gt;Decreasing Load on Database Servers&lt;/H3&gt;&lt;P style="margin-top: 4pt;"&gt;The amount of data fetched from external data sources can also be greatly reduced. This reduces work load on external databases and network traffic. Furthermore, when several QlikView scripts share the same data it is only necessary to load it once from the source database into a QVD file. The other applications can make use of the same data via this QVD file.&lt;/P&gt;&lt;H3&gt;Consolidating Data from Multiple QlikView Applications&lt;/H3&gt;&lt;P style="margin-top: 4pt;"&gt;With the &lt;SPAN class="MCXref_0"&gt;&lt;EM&gt;Binary&lt;/EM&gt;&lt;/SPAN&gt; script statement it is possible to load data from only one single QlikView application into another one, but with QVD files a QlikView script can combine data from any number of QlikView applications. This opens up possibilities e.g. for applications consolidating similar data from different business units etc.&lt;/P&gt;&lt;H3&gt;Incremental Load&lt;/H3&gt;&lt;P style="margin-top: 4pt;"&gt;In many common cases the QVD functionality can be used for facilitating incremental load, i.e. exclusively loading new records from a growing database.&lt;/P&gt;&lt;P class="Bullet"&gt;To learn more about the use of QVD files and Incremental Load, follow the link below:&lt;/P&gt;&lt;P style="margin-top: 4pt;"&gt;&lt;SPAN class="MCXref_0"&gt;&lt;EM&gt;Using QVD Files for Incremental Load&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;H2&gt;Create QVD Files&lt;/H2&gt;&lt;P style="margin-top: 4pt;"&gt;A QVD file can be created by one of three different methods:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Explicit creation and naming using the &lt;SPAN class="MCXref_0"&gt;&lt;EM&gt;Store&lt;/EM&gt;&lt;/SPAN&gt; command in the QlikView script. Simply state in the script that a previously read table or part thereof is to be exported to an explicitly named file at a location of your choice.&lt;/LI&gt;&lt;LI&gt;Automatic creation and maintenance from script. By preceding a &lt;SPAN class="Bold"&gt;load&lt;/SPAN&gt; or &lt;SPAN class="Bold"&gt;select&lt;/SPAN&gt; statement with the &lt;SPAN class="MCXref_0"&gt;&lt;EM&gt;Buffer&lt;/EM&gt;&lt;/SPAN&gt; prefix, QlikView will automatically create a QVD file which under certain conditions can be used instead of the original data source when reloading data.&lt;/LI&gt;&lt;LI&gt;Explicit, manual creation and naming from layout or via &lt;SPAN class="MCXref_0"&gt;&lt;EM&gt;Internal Macro Interpreter&lt;/EM&gt;&lt;/SPAN&gt;. Data can be exported from the QlikView layout via GUI commands or Automation macros. In the GUI you will find QVD as one of the possible export formats under the &lt;SPAN class="Bold"&gt;Export...&lt;/SPAN&gt; command, found on the object menu of most sheet objects.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;There is no difference between the resulting QVD files, e.g. with regard to reading speed etc. &lt;/P&gt;&lt;H2&gt;Reading Data from QVD Files&lt;/H2&gt;&lt;P style="margin-top: 4pt;"&gt;A QVD file can be read into or accessed by QlikView by the following methods:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Loading a QVD file as an explicit data source. QVD files can be referenced by a &lt;SPAN class="Bold"&gt;load&lt;/SPAN&gt; statement in the QlikView script just like any other type of text files (csv, fix, dif, biff etc). The &lt;SPAN class="MCXref_0"&gt;&lt;EM&gt;File Wizard: Type&lt;/EM&gt;&lt;/SPAN&gt; handles QVD files by the same principles. &lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P style="margin-top: 4pt; font-weight: bold;"&gt;load * from xyz.qvd (qvd);&lt;/P&gt;&lt;P style="margin-top: 4pt; font-weight: bold;"&gt;load Name, RegNo from xyz.qvd (qvd);&lt;/P&gt;&lt;P style="margin-top: 4pt; font-weight: bold;"&gt;load Name as a, RegNo as b from xyz.qvd (qvd);&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;Automatic loading of buffered QVD files. When using the &lt;SPAN class="MCXref_0"&gt;&lt;EM&gt;Buffer&lt;/EM&gt;&lt;/SPAN&gt; prefix on &lt;SPAN class="Bold"&gt;load&lt;/SPAN&gt; or &lt;SPAN class="Bold"&gt;select&lt;/SPAN&gt; statements, no explicit statements for reading are necessary. QlikView will determine the extent to which it will use data from the QVD file as opposed to acquiring data via the original &lt;SPAN class="Bold"&gt;load&lt;/SPAN&gt; or &lt;SPAN class="Bold"&gt;select&lt;/SPAN&gt; statement.&lt;/LI&gt;&lt;LI&gt;Accessing QVD files via the script. A number of script functions (all beginning with &lt;SPAN class="Bold"&gt;qvd&lt;/SPAN&gt;) can be used for retrieving various information on the data found in the XML header of a QVD file. These functions are presented under the &lt;SPAN class="MCXref_0"&gt;&lt;EM&gt;File Functions in Script&lt;/EM&gt;&lt;/SPAN&gt; functions.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #808080;"&gt;&lt;SPAN class="PrimaryQVRelease"&gt;QlikView 11.20 SR3&lt;/SPAN&gt;, &lt;SPAN class="PrimaryQVVersion"&gt;12018&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Oct 2013 16:39:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557484#M1132645</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-10-31T16:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557485#M1132646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://www.youtube.com/watch?v=tktV-TVe3So" title="http://www.youtube.com/watch?v=tktV-TVe3So"&gt;Creating QVDs and Using the Store Function - YouTube&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Oct 2013 16:47:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557485#M1132646</guid>
      <dc:creator />
      <dc:date>2013-10-31T16:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557486#M1132647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Nov 2013 09:14:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557486#M1132647</guid>
      <dc:creator />
      <dc:date>2013-11-01T09:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557487#M1132648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;supposed that your table name is Table1, you just need to write the following script after your table load statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG&gt;Store Table1 into Table1.qvd (qvd); &lt;/STRONG&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;/P&gt;&lt;P&gt;This will store the QVD in the same folder where you have saved the qvw. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also be more specific to where you want to save the qvd, for example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Store Table 1 into C:\......\Table1.qvd (qvd); &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Nov 2013 09:22:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557487#M1132648</guid>
      <dc:creator />
      <dc:date>2013-11-01T09:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557488#M1132649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check these out on Youtube&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://youtu.be/SGEhw1MgwLk" title="http://youtu.be/SGEhw1MgwLk"&gt;Qlikview Create a QVD by RFB 144 - YouTube&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://youtu.be/6Z-lVomVQfo" title="http://youtu.be/6Z-lVomVQfo"&gt;Qlikview QVD Variable Name by RFB 145 - YouTube&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Nov 2013 09:29:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557488#M1132649</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2013-11-01T09:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557489#M1132650</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;You can create QVD at different stages of your process. It could be right after you import data from an external source and store it as QVD format for QlikView's faster access and processes OR export as a ready-to-use table after applying some formatting, groupings or even calculations for your other QVW applications to access to and read. Or, you may simply export for archive purposes. Do not forget that QVD is a flat table - that's it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see &lt;SPAN class="j-post-author"&gt;&lt;STRONG&gt;&lt;A href="https://community.qlik.com/people/dna"&gt;dna&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;'s reply to your question which shall become handy for you. If you still need help, let us know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best wishes,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Nov 2013 09:35:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557489#M1132650</guid>
      <dc:creator />
      <dc:date>2013-11-01T09:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557490#M1132651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Tyrone.&lt;/P&gt;&lt;P&gt;There is a useful link on QVDs for those not used to using them:&lt;/P&gt;&lt;P&gt;&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;Regards,&lt;/P&gt;&lt;P&gt;Neil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Nov 2013 11:24:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557490#M1132651</guid>
      <dc:creator>ngulliver</dc:creator>
      <dc:date>2013-11-20T11:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557491#M1132652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please help on how to modify the month into numerical format?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So instead of 2013Jul, I would need 201307.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Joni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Apr 2014 10:40:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557491#M1132652</guid>
      <dc:creator />
      <dc:date>2014-04-12T10:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557492#M1132653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change the format of the Date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so you may have it as YYYYMMM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change it to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YYYYMM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if that does not help try sharing your App&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Apr 2014 14:34:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557492#M1132653</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-04-12T14:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557493#M1132654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your assistance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used this method and it works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET i=Date(ReloadTime(),'YYYYMMDD');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Joni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2014 08:27:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557493#M1132654</guid>
      <dc:creator />
      <dc:date>2014-04-14T08:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating QVD's</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557494#M1132655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First learn a object Language (Java,C#,C++)...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second study use of Hash Maps (ex MapDB in java)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 21:27:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-QVD-s/m-p/557494#M1132655</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-17T21:27:24Z</dc:date>
    </item>
  </channel>
</rss>

