<?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: How to incremental load new transaction data into QVF in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-incremental-load-new-transaction-data-into-QVF/m-p/1592810#M43581</link>
    <description>&lt;P&gt;It generally doesn't make sense to use Buffer when loading from QVDs. Buffer creates a QVD - in this case one each for Trade and Quote.&amp;nbsp; It's just extra work as you are already loading from QVDs.&amp;nbsp;&lt;/P&gt;&lt;P&gt;You'll want to take a look at your QVD loads and make the, optimized loads.&amp;nbsp; When you add a field like:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;*, quoteId as tradeId,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You are un-optimizing the load.&amp;nbsp; Ideally you would just "Load *".&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In your Trade load you show "Load&amp;nbsp;tradeId, *" which I believe would result in a script error.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You could possible speed things up by binary loading a qvf with history and then only loading the new QVDs. Binary load is not supported in QS Server, so it would be best to export the historical app to a qvf and binary load from there.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would start by trying to optimize the QVD loads and then move to binary if that was not fast enough or I couldn't optimize.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 17 Jun 2019 21:05:33 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2019-06-17T21:05:33Z</dc:date>
    <item>
      <title>How to incremental load new transaction data into QVF</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-incremental-load-new-transaction-data-into-QVF/m-p/1592489#M43554</link>
      <description>&lt;P&gt;I&amp;nbsp;had&amp;nbsp; quote and trade data updated on transaction level which reload and stored as QVD from oracle database.&amp;nbsp; I also archive the quote data and trade data weekly as trade_week1_2019.qvd/trade_week2_2019.qvd&amp;nbsp;...&lt;/P&gt;&lt;P&gt;I&amp;nbsp;created a separate app to reload all the data from 2018-01-01 to latest&amp;nbsp;for visualization.&amp;nbsp; The transaction volume is around 20&amp;nbsp;million and&amp;nbsp;QVF size is around 1.2GB.&amp;nbsp;&amp;nbsp;It takes 25 mins&amp;nbsp;to&amp;nbsp;finish the load script. So I am thinking if the visualization QVF app can only reload new data but not from 2018-01-01 every time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;I tried Buffer load&amp;nbsp; but didn't work.&amp;nbsp; Am I using Buffer load wrongly ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Quote:&lt;BR /&gt;buffer load&lt;BR /&gt;quoteId as tradeId,&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;FROM [lib://PROD QVDFiles/Trade_His\quote*.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Trade:&lt;BR /&gt;buffer load&lt;BR /&gt;tradeId,&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;FROM [lib://PROD QVDFiles/Trade_His\Trade*.qvd]&lt;BR /&gt;(qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 05:34:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-incremental-load-new-transaction-data-into-QVF/m-p/1592489#M43554</guid>
      <dc:creator>lolalichang</dc:creator>
      <dc:date>2024-11-16T05:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to incremental load new transaction data into QVF</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-incremental-load-new-transaction-data-into-QVF/m-p/1592810#M43581</link>
      <description>&lt;P&gt;It generally doesn't make sense to use Buffer when loading from QVDs. Buffer creates a QVD - in this case one each for Trade and Quote.&amp;nbsp; It's just extra work as you are already loading from QVDs.&amp;nbsp;&lt;/P&gt;&lt;P&gt;You'll want to take a look at your QVD loads and make the, optimized loads.&amp;nbsp; When you add a field like:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;*, quoteId as tradeId,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You are un-optimizing the load.&amp;nbsp; Ideally you would just "Load *".&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In your Trade load you show "Load&amp;nbsp;tradeId, *" which I believe would result in a script error.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You could possible speed things up by binary loading a qvf with history and then only loading the new QVDs. Binary load is not supported in QS Server, so it would be best to export the historical app to a qvf and binary load from there.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would start by trying to optimize the QVD loads and then move to binary if that was not fast enough or I couldn't optimize.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2019 21:05:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-incremental-load-new-transaction-data-into-QVF/m-p/1592810#M43581</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-06-17T21:05:33Z</dc:date>
    </item>
  </channel>
</rss>

