<?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 rescue old data from qvd in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/rescue-old-data-from-qvd/m-p/450397#M695563</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;I got an old qvw which displays data, that I cant reload from source, because source data has gone.&lt;/P&gt;&lt;P&gt;Is there a chance to store or extracts old data from the qvw?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Jun 2013 09:51:47 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-06-07T09:51:47Z</dc:date>
    <item>
      <title>rescue old data from qvd</title>
      <link>https://community.qlik.com/t5/QlikView/rescue-old-data-from-qvd/m-p/450397#M695563</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;I got an old qvw which displays data, that I cant reload from source, because source data has gone.&lt;/P&gt;&lt;P&gt;Is there a chance to store or extracts old data from the qvw?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jun 2013 09:51:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/rescue-old-data-from-qvd/m-p/450397#M695563</guid>
      <dc:creator />
      <dc:date>2013-06-07T09:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: rescue old data from qvd</title>
      <link>https://community.qlik.com/t5/QlikView/rescue-old-data-from-qvd/m-p/450398#M695564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the &lt;STRONG&gt;binary&lt;/STRONG&gt; statement to load data from a qvw file into another qvw file. You can then store the data into qvd's if you want (or in csv). The binary statements has to be the absolute first line in your script. You can use something like below to load the data from a qvw file and create qvd's for every table. Change &lt;EM&gt;your.qvw&lt;/EM&gt; and &lt;EM&gt;c:\temp\extract&lt;/EM&gt; to what's appropriate for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;BINARY your.qvw;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Directory c:\temp\extract;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;FOR i = 0 to NoOfTables()-1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vTableName = TableName($(i));&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vOutfile = '$(vTableName).qvd';&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STORE [$(vTableName)] INTO [$(vOutfile)] (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;NEXT i&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jun 2013 09:57:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/rescue-old-data-from-qvd/m-p/450398#M695564</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-06-07T09:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: rescue old data from qvd</title>
      <link>https://community.qlik.com/t5/QlikView/rescue-old-data-from-qvd/m-p/450399#M695565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that worked wonderful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice weekend&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jun 2013 11:25:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/rescue-old-data-from-qvd/m-p/450399#M695565</guid>
      <dc:creator />
      <dc:date>2013-06-07T11:25:48Z</dc:date>
    </item>
  </channel>
</rss>

