<?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 Store QVD data into CSV in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Store-QVD-data-into-CSV/m-p/917337#M650876</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 need to store data from QVD into CSV. Using below query i could able to generate csv file, but how to split the file into multiple when we reach the row limit in CSV or in excel or in any format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anybody has worked or have solution, let me know. It will be great help...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Jul 2015 08:36:21 GMT</pubDate>
    <dc:creator>manojkulkarni</dc:creator>
    <dc:date>2015-07-28T08:36:21Z</dc:date>
    <item>
      <title>Store QVD data into CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Store-QVD-data-into-CSV/m-p/917337#M650876</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 need to store data from QVD into CSV. Using below query i could able to generate csv file, but how to split the file into multiple when we reach the row limit in CSV or in excel or in any format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anybody has worked or have solution, let me know. It will be great help...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 08:36:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-QVD-data-into-CSV/m-p/917337#M650876</guid>
      <dc:creator>manojkulkarni</dc:creator>
      <dc:date>2015-07-28T08:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Store QVD data into CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Store-QVD-data-into-CSV/m-p/917338#M650877</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;In general excel will have some limited number of rows, and so I dont think so if QVD having more number of records can export in CSV.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 08:38:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-QVD-data-into-CSV/m-p/917338#M650877</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2015-07-28T08:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Store QVD data into CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Store-QVD-data-into-CSV/m-p/917339#M650878</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;well, if you know the limit of the target_format you can just include a row_counter in the table and if the limit is reached, some routine has to be called to split the table. The only difficulty is avoiding a giant synthetic key when you split the table into several.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 08:41:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-QVD-data-into-CSV/m-p/917339#M650878</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-07-28T08:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Store QVD data into CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Store-QVD-data-into-CSV/m-p/917340#M650879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like:&lt;/P&gt;&lt;P&gt;tablename1:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;First 10000&lt;/STRONG&gt; Load * from &amp;lt;qvd&amp;gt;;&lt;/P&gt;&lt;P&gt;Store tablename1 &amp;lt;tablename1&amp;gt;(txt,delimiter is ';')&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // or use where clause like shown below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tablename2:&lt;/P&gt;&lt;P&gt;Load * from &amp;lt;qvd&amp;gt; &lt;STRONG&gt;where recno()&amp;gt;10000;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Store tablename2 &amp;lt;tablename2&amp;gt;(txt,delimiter is ';')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 08:51:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-QVD-data-into-CSV/m-p/917340#M650879</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2015-07-28T08:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Store QVD data into CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Store-QVD-data-into-CSV/m-p/917341#M650880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to split the qvd you will need a load-loop over the qvd then the store-command itself had no option for limiting the store in any kind. The follwing routine isn't tested and might need some small syntax- and logical adjustments but in general the logic should work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let vQVDFile = 'D:\Folder\File.qvd';&lt;/P&gt;&lt;P&gt;let vQVDRecordsTotal = QvdNoOfRecords( '$(vQVDFile)' );&lt;/P&gt;&lt;P&gt;let vQVDRecords = 65532;&lt;/P&gt;&lt;P&gt;let vLoadCounter = 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i = 1 to vQVDRecordsTotal step vQVDRecords&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; csvFile:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load * From $(vQVDFile) (qvd) where recno() &amp;gt;= $(i) and recno() &amp;lt; $(i) + vQVDRecords;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vLoadCounter = $(vLoadCounter) + 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; store csvFile into csvFile_$(vLoadCounter).csv (txt);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop table csvFile;&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 08:57:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-QVD-data-into-CSV/m-p/917341#M650880</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-07-28T08:57:42Z</dc:date>
    </item>
  </channel>
</rss>

