<?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 (MERGE) using NON-QVD method. in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505691#M104010</link>
    <description>&lt;P&gt;1. Uncheck the "Partial Laod" in QMC&lt;BR /&gt;2. Run LOAD statement from set 1 where data &amp;gt; '1900-01-01' (Initial Full Load). Now, data can be previwed in "Data Model Viewer",&amp;nbsp;&amp;nbsp;Consider this data in memory as set 2. After that, Set the lastrundate = now()&lt;BR /&gt;3. Check the "Partial Load" &lt;BR /&gt;4. Run ADD Only LOAD statement from set 1 where data &amp;gt; 'lastrundate' (this is next run)&lt;BR /&gt;5. Full Load + Additional Data can be seen in 'Data Model Viewer'. I believe it is in memory.&lt;BR /&gt;6. Instead of using ADD Only (step 4), is it possible to use 'MERGE' ? The merge should do merge at the memory level. We are not using xlxs or table for set2. Here, set2 is model memory&lt;/P&gt;</description>
    <pubDate>Thu, 13 Feb 2025 04:29:41 GMT</pubDate>
    <dc:creator>venkatramachandran</dc:creator>
    <dc:date>2025-02-13T04:29:41Z</dc:date>
    <item>
      <title>Incremental Load (MERGE) using NON-QVD method.</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505677#M104003</link>
      <description>&lt;P&gt;Is there a way to do Incremental Load using NON-QVD method?&lt;/P&gt;
&lt;P&gt;I have a source table. dw.vr_sample_table. It has columns such as a sample_id int, name varchar and loaddate timestamp.&lt;/P&gt;
&lt;P&gt;Is it possible to do using Partial-Reload? Please help to create the script. Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 21:32:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505677#M104003</guid>
      <dc:creator>venkatramachandran</dc:creator>
      <dc:date>2025-02-12T21:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load (MERGE) using NON-QVD method.</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505680#M104005</link>
      <description>&lt;P&gt;If I understand you correctly you want to use merge load without storing output to qvd.&amp;nbsp; Yes you can use merge load into an app from&amp;nbsp; any load/select script (do not need to be qvd)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In order to just load the delta changes you would need to always do a partial load (not full load) when reloading the app.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please take a look at this page:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense/November2024/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes/Merge.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/November2024/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes/Merge.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 22:29:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505680#M104005</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2025-02-12T22:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load (MERGE) using NON-QVD method.</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505683#M104006</link>
      <description>&lt;P&gt;Incremental reload is generally understood to mean loading rows that exist in Set1 (the DB table) but do not exist in Set2 (the QVD).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your case you refer to only one Set, the db table. What defines incremental or partial load for you? Do you want to load rows from a point in time? What defines that time?&lt;/P&gt;
&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2025 22:53:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505683#M104006</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2025-02-12T22:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load (MERGE) using NON-QVD method.</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505691#M104010</link>
      <description>&lt;P&gt;1. Uncheck the "Partial Laod" in QMC&lt;BR /&gt;2. Run LOAD statement from set 1 where data &amp;gt; '1900-01-01' (Initial Full Load). Now, data can be previwed in "Data Model Viewer",&amp;nbsp;&amp;nbsp;Consider this data in memory as set 2. After that, Set the lastrundate = now()&lt;BR /&gt;3. Check the "Partial Load" &lt;BR /&gt;4. Run ADD Only LOAD statement from set 1 where data &amp;gt; 'lastrundate' (this is next run)&lt;BR /&gt;5. Full Load + Additional Data can be seen in 'Data Model Viewer'. I believe it is in memory.&lt;BR /&gt;6. Instead of using ADD Only (step 4), is it possible to use 'MERGE' ? The merge should do merge at the memory level. We are not using xlxs or table for set2. Here, set2 is model memory&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2025 04:29:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505691#M104010</guid>
      <dc:creator>venkatramachandran</dc:creator>
      <dc:date>2025-02-13T04:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load (MERGE) using NON-QVD method.</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505777#M104037</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Below is the question..I followed the steps. How to do MERGE Only LOAD into Data Model memory table.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;1. Uncheck the "Partial Load" in QMC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Run LOAD statement from set 1 where data &amp;gt; '1900-01-01' (Initial Full Load). Now, data can be previwed in "Data Model Viewer",&amp;nbsp;&amp;nbsp;Consider this data in memory as set 2. After that, Set the lastrundate = now()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Check the "Partial Load"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Run ADD Only LOAD statement from set 1 where data &amp;gt; 'lastrundate' (this is next run)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;5. Full Load + Additional Data can be seen in 'Data Model Viewer'. I believe it is in memory.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;6. Instead of using ADD Only (step 4), is it possible to use 'MERGE' ? The merge should do merge at the memory level. We are not using xlxs or table for set2. Here, set2 is model memory&lt;/SPAN&gt; answer&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="ae_app" data-nosnippet=""&gt;&lt;!--
        Layout, Style or Voice Helpers
    --&gt;
&lt;DIV id="ae_helpers" class="ae-module" style="display: none;"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;!--
        Compliance
    --&gt;
&lt;DIV id="ae_compliance" class="ae-module" style="display: none;"&gt;&lt;!-- For autoSmartRem addNewWindowWarnings div is referenced in an aria-describedby --&gt;
&lt;DIV id="audioeye_new_window_message" style="display: none;"&gt;Opens in new window&lt;/DIV&gt;
&lt;DIV id="audioeye_pdf_message" style="display: none;"&gt;PDF Download&lt;/DIV&gt;
&lt;DIV id="audioeye_word_message" style="display: none;"&gt;Word Download&lt;/DIV&gt;
&lt;DIV id="audioeye_excel_message" style="display: none;"&gt;Excel Download&lt;/DIV&gt;
&lt;DIV id="audioeye_powerpoint_message" style="display: none;"&gt;PowerPoint Download&lt;/DIV&gt;
&lt;DIV id="audioeye_document_message" style="display: none;"&gt;Document Download&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;!--
        Versioning Control Panel if versioning = true !
    --&gt; &lt;!--
        Launcher
    --&gt;  &lt;!-- Toolbar --&gt;  &lt;!--
        Site Menu
    --&gt;  &lt;!--
        Generic Aria Live message container
    --&gt;
&lt;DIV id="ae_enabled_messages" class="ae-blurb-noaudio" aria-relevant="additions" aria-live="assertive"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;!-- Symbol definitions --&gt;    &lt;/DIV&gt;
&lt;!-- end #ae_app --&gt;</description>
      <pubDate>Thu, 13 Feb 2025 14:47:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505777#M104037</guid>
      <dc:creator>venkatramachandran</dc:creator>
      <dc:date>2025-02-13T14:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load (MERGE) using NON-QVD method.</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505836#M104049</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Below is the question..I followed the steps. How to do MERGE Only LOAD into Data Model memory table.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;1. Uncheck the "Partial Load" in QMC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Run LOAD statement from set 1 where data &amp;gt; '1900-01-01' (Initial Full Load). Now, data can be previwed in "Data Model Viewer",&amp;nbsp;&amp;nbsp;Consider this data in memory as set 2. After that, Set the lastrundate = now()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Check the "Partial Load"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Run ADD Only LOAD statement from set 1 where data &amp;gt; 'lastrundate' (this is next run)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;5. Full Load + Additional Data can be seen in 'Data Model Viewer'. I believe it is in memory.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;6. Instead of using ADD Only (step 4), is it possible to use 'MERGE' ? The merge should do merge at the memory level. We are not using xlxs or table for set2. Here, set2 is model memory&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;answer&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV id="ae_app" data-nosnippet=""&gt;&lt;!--
        Layout, Style or Voice Helpers
    --&gt;
&lt;DIV id="ae_helpers" class="ae-module" style="display: none;"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;!--
        Compliance
    --&gt;
&lt;DIV id="ae_compliance" class="ae-module" style="display: none;"&gt;&lt;!-- For autoSmartRem addNewWindowWarnings div is referenced in an aria-describedby --&gt;
&lt;DIV id="audioeye_new_window_message" style="display: none;"&gt;Opens in new window&lt;/DIV&gt;
&lt;DIV id="audioeye_pdf_message" style="display: none;"&gt;PDF Download&lt;/DIV&gt;
&lt;DIV id="audioeye_word_message" style="display: none;"&gt;Word Download&lt;/DIV&gt;
&lt;DIV id="audioeye_excel_message" style="display: none;"&gt;Excel Download&lt;/DIV&gt;
&lt;DIV id="audioeye_powerpoint_message" style="display: none;"&gt;PowerPoint Download&lt;/DIV&gt;
&lt;DIV id="audioeye_document_message" style="display: none;"&gt;Document Download&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;!--
        Versioning Control Panel if versioning = true !
    --&gt; &lt;!--
        Launcher
    --&gt;  &lt;!-- Toolbar --&gt;  &lt;!--
        Site Menu
    --&gt;  &lt;!--
        Generic Aria Live message container
    --&gt;
&lt;DIV id="ae_enabled_messages" class="ae-blurb-noaudio" aria-relevant="additions" aria-live="assertive"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;!-- Symbol definitions --&gt;    &lt;/DIV&gt;
&lt;!-- end #ae_app --&gt;</description>
      <pubDate>Thu, 13 Feb 2025 22:53:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Load-MERGE-using-NON-QVD-method/m-p/2505836#M104049</guid>
      <dc:creator>venkatramachandran</dc:creator>
      <dc:date>2025-02-13T22:53:37Z</dc:date>
    </item>
  </channel>
</rss>

