<?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 How to create QVX file? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211145#M65508</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tim,&lt;/P&gt;&lt;P&gt;The QVX file format is documented in a PDF that installs wit the V10 SDK.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 04 Dec 2010 09:45:40 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2010-12-04T09:45:40Z</dc:date>
    <item>
      <title>How to create QVX file?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211139#M65502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created QVX file same like QVD, but getting error at the time of QVX load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Dec 2010 13:04:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211139#M65502</guid>
      <dc:creator />
      <dc:date>2010-12-02T13:04:32Z</dc:date>
    </item>
    <item>
      <title>How to create QVX file?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211140#M65503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same as how you create a QVD file. What error you are getting ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Dec 2010 13:12:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211140#M65503</guid>
      <dc:creator>renjithpl</dc:creator>
      <dc:date>2010-12-02T13:12:44Z</dc:date>
    </item>
    <item>
      <title>How to create QVX file?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211141#M65504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create QVX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TestAccount:&lt;/P&gt;&lt;P&gt;SQL SELECT TOP 10 AccountNumber,AccountName&lt;/P&gt;&lt;P&gt;FROM Account ORDER BY AccountID DESC;&lt;/P&gt;&lt;P&gt;STORE TestAccount INTO &lt;E&gt;&lt;/E&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Load QVX&lt;/P&gt;&lt;P&gt;&lt;B&gt;LOAD&lt;/B&gt; AccountNumber,AccountName FROM &lt;E&gt; (QVX);&lt;/E&gt;&lt;/P&gt;&lt;P&gt;error : Execution of script failed. Reload old data? Yes or No.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Dec 2010 13:33:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211141#M65504</guid>
      <dc:creator />
      <dc:date>2010-12-02T13:33:16Z</dc:date>
    </item>
    <item>
      <title>How to create QVX file?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211142#M65505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;store * from t1 into t1.qvx &lt;B&gt;(qvx)&lt;/B&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Dec 2010 07:45:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211142#M65505</guid>
      <dc:creator />
      <dc:date>2010-12-03T07:45:52Z</dc:date>
    </item>
    <item>
      <title>How to create QVX file?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211143#M65506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The QVX (Data Exchange) format introduced with V10 is intended to be used to pass data to QlikView in an optimized form directly from an external source. It is an open format with an XML based description that an external routine can write to. Hence you can use it in conjunction with a custom data connector to attach to data sources that do not have traditional ODBC/OLE-DB connectivity. Further you can use it in two formats -&lt;/P&gt;&lt;P&gt;1. As a persistent file format. If your target data source pushes data out you can capture it and persist to a QVX file that can be loaded as a part of your script&lt;/P&gt;&lt;P&gt;2. As a named pipe - if you target source exposes its own 'query' interface your custom connector and the QlikView script can support direct calls to fetch data during the load. The connector can pass the data into the script in the QVX format.&lt;/P&gt;&lt;P&gt;QVX is intended to solve the common request from people looking to write directly to a QVD format from an external source. Given the highly optimized nature of a QVD file, we have introduced this new QVX format to address the request. QVX is optimized though not to the extent of a QVD file.&lt;/P&gt;&lt;P&gt;What you don't want to confuse QVX into is the notion of storing into QVX from within a script. If you are passing data between QVW processes then a QVD is the right way. There is no advantage of using QVX in this process.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;John T&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Dec 2010 08:19:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211143#M65506</guid>
      <dc:creator>Qlik_Trigg</dc:creator>
      <dc:date>2010-12-03T08:19:15Z</dc:date>
    </item>
    <item>
      <title>How to create QVX file?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211144#M65507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;I haven't seen any example or documentation for how an external application can create a qvx file. It's not explained in the user manual. Can you point me to an example or doc?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;-Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Dec 2010 22:29:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211144#M65507</guid>
      <dc:creator />
      <dc:date>2010-12-03T22:29:17Z</dc:date>
    </item>
    <item>
      <title>How to create QVX file?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211145#M65508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tim,&lt;/P&gt;&lt;P&gt;The QVX file format is documented in a PDF that installs wit the V10 SDK.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Dec 2010 09:45:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211145#M65508</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2010-12-04T09:45:40Z</dc:date>
    </item>
    <item>
      <title>How to create QVX file?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211146#M65509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Issue a STORE .. INTO x.qvx (qvx) and look at the file in hex editor . It is a nice supplement to the official PDF .&lt;/P&gt;&lt;P&gt;-Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Dec 2010 14:39:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211146#M65509</guid>
      <dc:creator />
      <dc:date>2010-12-09T14:39:49Z</dc:date>
    </item>
    <item>
      <title>How to create QVX file?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211147#M65510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see here: &lt;A href="http://community.qlik.com/media/p/149203.aspx"&gt;http://community.qlik.com/media/p/149203.aspx&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Dec 2010 16:42:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211147#M65510</guid>
      <dc:creator />
      <dc:date>2010-12-09T16:42:46Z</dc:date>
    </item>
    <item>
      <title>How to create QVX file?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211148#M65511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I haven't seen any example or documentation for how an external application can create a qvx file. It's not explained in the user manual. Can you provide the QV Document which explain me the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Feb 2011 17:51:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211148#M65511</guid>
      <dc:creator />
      <dc:date>2011-02-01T17:51:37Z</dc:date>
    </item>
    <item>
      <title>How to create QVX file?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211149#M65512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Attached is a sample.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Mar 2011 16:22:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/211149#M65512</guid>
      <dc:creator>sukydhak</dc:creator>
      <dc:date>2011-03-15T16:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to create QVX file?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/2442954#M1225602</link>
      <description>&lt;P&gt;Still 14 years later, no good official documentation on the QVX format. The QVX_QV_DUAL format is not explained in the documentation, yet, this is the format Qlik Sense chooses whenever you export a table as QVX.&lt;/P&gt;
&lt;P&gt;The only place where I found any documentation about the QVX_QV_DUAL data type: &lt;A href="https://community.qlik.com/cyjdu72974/attachments/cyjdu72974/qlikview-app-development/1061458/1/QlikView%2520QVX%2520File%2520Format.pdf" target="_blank"&gt;https://community.qlik.com/cyjdu72974/attachments/cyjdu72974/qlikview-app-development/1061458/1/QlikView%2520QVX%2520File%2520Format.pdf&lt;/A&gt; (hopefully it will not be deleted anytime soon)&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2024 12:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-QVX-file/m-p/2442954#M1225602</guid>
      <dc:creator>cjgorrin</dc:creator>
      <dc:date>2024-04-19T12:48:26Z</dc:date>
    </item>
  </channel>
</rss>

