<?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 based on multiple daily diifferent dates files in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Incremental-Load-based-on-multiple-daily-diifferent-dates-files/m-p/1699562#M53575</link>
    <description>&lt;P&gt;For insert and update you need the following,&lt;/P&gt;&lt;P&gt;A ModificationTime field (or similar) is required for Qlik Sense to recognize which records are new.&lt;/P&gt;&lt;P&gt;A primary key field is required for Qlik Sense to sort out updated records from the QVD file.&lt;/P&gt;&lt;P class="example"&gt;&lt;SPAN class="autonumber"&gt;&lt;SPAN&gt;&lt;STRONG&gt;Example&lt;/STRONG&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="Code"&gt;QV_Table:&lt;/P&gt;&lt;P class="Code"&gt;Load PrimaryKey, X, Y FROM &lt;SPAN&gt;SALES&lt;/SPAN&gt;_TABLE&lt;/P&gt;&lt;P class="Code"&gt;WHERE ModificationTime &amp;gt;= #$(LastExecTime)#;&lt;/P&gt;&lt;P class="Code"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="Code"&gt;Concatenate&lt;/P&gt;&lt;P class="Code"&gt;LOAD PrimaryKey, X, Y FROM File.QVD&lt;/P&gt;&lt;P class="Code"&gt;WHERE NOT Exists(PrimaryKey);&lt;/P&gt;&lt;P class="Code"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="Code"&gt;STORE QV_Table INTO File.QVD;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 06 May 2020 18:23:04 GMT</pubDate>
    <dc:creator>IamAlbinAntony</dc:creator>
    <dc:date>2020-05-06T18:23:04Z</dc:date>
    <item>
      <title>Incremental Load based on multiple daily diifferent dates files</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Load-based-on-multiple-daily-diifferent-dates-files/m-p/1699335#M53550</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have a daily files for example&amp;nbsp;SALES_20200201,SALES_20200202,SALES_20200203 and inside on this files consists of records from multiple different dates&amp;nbsp;&lt;/P&gt;&lt;P&gt;SALES_20200201 file&lt;/P&gt;&lt;TABLE width="136px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="85.6px" height="164px"&gt;Date&lt;/TD&gt;&lt;TD width="60.8px" height="164px"&gt;No of records&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="85.6px" height="44px"&gt;31/01/2020&lt;/TD&gt;&lt;TD width="60.8px" height="44px"&gt;10000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="85.6px" height="24px"&gt;30/01/2020&lt;/TD&gt;&lt;TD width="60.8px" height="24px"&gt;2000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="85.6px" height="24px"&gt;29/01/2020&lt;/TD&gt;&lt;TD width="60.8px" height="24px"&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="85.6px" height="24px"&gt;01/02/2020&lt;/TD&gt;&lt;TD width="60.8px" height="24px"&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="85.6px" height="24px"&gt;02/02/2020&lt;/TD&gt;&lt;TD width="60.8px" height="24px"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SALES_20200202 file&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="85.6px" height="164px"&gt;Date&lt;/TD&gt;&lt;TD width="60.8px" height="164px"&gt;No of records&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="85.6px" height="44px"&gt;31/01/2020&lt;/TD&gt;&lt;TD width="60.8px" height="44px"&gt;15000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="85.6px" height="24px"&gt;30/01/2020&lt;/TD&gt;&lt;TD width="60.8px" height="24px"&gt;3000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="85.6px" height="24px"&gt;29/01/2020&lt;/TD&gt;&lt;TD width="60.8px" height="24px"&gt;70&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="85.6px" height="24px"&gt;03/02/2020&lt;/TD&gt;&lt;TD width="60.8px" height="24px"&gt;20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="85.6px" height="24px"&gt;04/02/2020&lt;/TD&gt;&lt;TD width="60.8px" height="24px"&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Wanted to split these files into multiple different qvd with respective date accordingly. For eg. NewSales_20200131.qvd consists of only records with date&amp;nbsp;31/01/2020.&lt;/P&gt;&lt;P&gt;After that wanted to perform incremental load based on each of newly created qvd by each of dates respectively for&amp;nbsp;SALES_20200202 ,&amp;nbsp;SALES_20200203. If new inserted/updated records then append on existing newly created qvd else then store into new qvd with date.&lt;/P&gt;&lt;P&gt;1. Split and store from daily files into qvd with different dates.&lt;/P&gt;&lt;P&gt;2.Perform incremental load on the newly created qvd.&lt;/P&gt;&lt;P&gt;Appreciate if someone could help on this.&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 09:36:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Load-based-on-multiple-daily-diifferent-dates-files/m-p/1699335#M53550</guid>
      <dc:creator>101010</dc:creator>
      <dc:date>2020-05-06T09:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load based on multiple daily diifferent dates files</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Load-based-on-multiple-daily-diifferent-dates-files/m-p/1699562#M53575</link>
      <description>&lt;P&gt;For insert and update you need the following,&lt;/P&gt;&lt;P&gt;A ModificationTime field (or similar) is required for Qlik Sense to recognize which records are new.&lt;/P&gt;&lt;P&gt;A primary key field is required for Qlik Sense to sort out updated records from the QVD file.&lt;/P&gt;&lt;P class="example"&gt;&lt;SPAN class="autonumber"&gt;&lt;SPAN&gt;&lt;STRONG&gt;Example&lt;/STRONG&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="Code"&gt;QV_Table:&lt;/P&gt;&lt;P class="Code"&gt;Load PrimaryKey, X, Y FROM &lt;SPAN&gt;SALES&lt;/SPAN&gt;_TABLE&lt;/P&gt;&lt;P class="Code"&gt;WHERE ModificationTime &amp;gt;= #$(LastExecTime)#;&lt;/P&gt;&lt;P class="Code"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="Code"&gt;Concatenate&lt;/P&gt;&lt;P class="Code"&gt;LOAD PrimaryKey, X, Y FROM File.QVD&lt;/P&gt;&lt;P class="Code"&gt;WHERE NOT Exists(PrimaryKey);&lt;/P&gt;&lt;P class="Code"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="Code"&gt;STORE QV_Table INTO File.QVD;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 18:23:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Load-based-on-multiple-daily-diifferent-dates-files/m-p/1699562#M53575</guid>
      <dc:creator>IamAlbinAntony</dc:creator>
      <dc:date>2020-05-06T18:23:04Z</dc:date>
    </item>
  </channel>
</rss>

