<?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: Incremental load in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2547998#M110116</link>
    <description>&lt;P&gt;While concatenating these two QVDs, are you applying any transformations? If yes, that’s likely why it’s taking more time.&lt;/P&gt;&lt;P&gt;You can reduce the load time by loading the history QVD in optimised mode and avoiding any transformations during concatenation.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Apr 2026 14:34:04 GMT</pubDate>
    <dc:creator>vighnesh_gawad</dc:creator>
    <dc:date>2026-04-28T14:34:04Z</dc:date>
    <item>
      <title>Incremental load</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2547989#M110113</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Need a help here, this might be a simple question .&lt;/P&gt;&lt;P&gt;I am doing an incremental load of 270 million records which is for duration of 3months. While concatenating the new data with history Qvd it is taking more time to load as history Qvd is having more data.&lt;/P&gt;&lt;P&gt;Is there any solution where i should not be loading again the history Qvd, only can concatenate to the new data.&lt;/P&gt;&lt;P&gt;Would be grateful if any ideas can be posted here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2026 14:08:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2547989#M110113</guid>
      <dc:creator>ka51</dc:creator>
      <dc:date>2026-04-28T14:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2547993#M110114</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/367892"&gt;@ka51&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What about separating .qvd per period?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2026 14:16:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2547993#M110114</guid>
      <dc:creator>Eduardo_Monteiro</dc:creator>
      <dc:date>2026-04-28T14:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2547998#M110116</link>
      <description>&lt;P&gt;While concatenating these two QVDs, are you applying any transformations? If yes, that’s likely why it’s taking more time.&lt;/P&gt;&lt;P&gt;You can reduce the load time by loading the history QVD in optimised mode and avoiding any transformations during concatenation.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2026 14:34:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2547998#M110116</guid>
      <dc:creator>vighnesh_gawad</dc:creator>
      <dc:date>2026-04-28T14:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2548005#M110118</link>
      <description>&lt;P&gt;As we are maintaining rolling 3 months of historical data ,hence applying a filter for the same while concatenating.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2026 16:48:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2548005#M110118</guid>
      <dc:creator>ka51</dc:creator>
      <dc:date>2026-04-28T16:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2548082#M110129</link>
      <description>&lt;P&gt;Take a more careful look on the above suggestions. Loading qvd-data optimized (no transformations unless a single where exists(OnlyWithOneParameter); is really fast (the kind of filtering matters).&lt;/P&gt;&lt;P&gt;In addition and/or as an alternative the historical data could be sliced and the slice-information be included within the file-name. Afterwards this file-information could be read before the data are touched, for example:&lt;/P&gt;&lt;P&gt;for each file in filelist('path/*.qvd')&lt;BR /&gt;&amp;nbsp; &amp;nbsp;if subfield(subfield('$(file)', '.', 1), '_', -1) &amp;gt;= MyPeriodInformation then&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;t: load ...;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;end if&lt;BR /&gt;next&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2026 12:15:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2548082#M110129</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2026-04-29T12:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2548114#M110136</link>
      <description>&lt;P&gt;As others have suggested you may not have an optimized load in your concatenate. If you post the script we may have some suggestions. Here are some general ideas to maintain the optimized load.&lt;/P&gt;&lt;P&gt;Load the history QVD first with a Where Exists(trandate) pattern to roll off old data. Then concatenate the updated rows to this resident table.&amp;nbsp;&lt;A href="https://qlikviewcookbook.com/2026/02/optimized-load-script-patterns/" target="_blank"&gt;https://qlikviewcookbook.com/2026/02/optimized-load-script-patterns/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If the history QVD is just too large here are some script patterns for segmenting your QVD.&amp;nbsp;&lt;A href="https://qlikviewcookbook.com/2022/03/how-to-segment-qvd-files/" target="_blank"&gt;https://qlikviewcookbook.com/2022/03/how-to-segment-qvd-files/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2026 20:48:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2548114#M110136</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2026-04-29T20:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2548138#M110138</link>
      <description>&lt;P&gt;Sure, will have a look. Also will try to paste the code here.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2026 04:59:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-load/m-p/2548138#M110138</guid>
      <dc:creator>ka51</dc:creator>
      <dc:date>2026-04-30T04:59:18Z</dc:date>
    </item>
  </channel>
</rss>

