<?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 to remove deleted records in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255788#M850393</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ROB,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;Please give the answer of the incremental load scenario:&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;Yesterday we have loaded the data that contains 100 rows and today user has deleted 5 records from source database and your incremental load run so no inserted record will found because their n new record is inserted and updated but 5 record is deleted from source data. How incremental load is identify the those 5 deleted record and present in your QVD.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;I need t know today which record is deleted.&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Apr 2017 14:50:52 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-04-20T14:50:52Z</dc:date>
    <item>
      <title>Incremental load to remove deleted records</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255784#M850389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am pulling in my orders from a SQL database up to the end of 2016, then using the incremental load to pull in 2017. The problem i am having is if a order is deleted from the database in 2017, it remains in the QVD file. is it possible to remove 2017 records from the QVD file and reload fresh data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255784#M850389</guid>
      <dc:creator>ccsimo16</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load to remove deleted records</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255785#M850390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;In this thread you have some valious information about incremental load:&lt;A href="https://community.qlik.com/thread/84146"&gt;Incremental load in Qlikview&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 21:21:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255785#M850390</guid>
      <dc:creator>hector_munoz</dc:creator>
      <dc:date>2017-03-08T21:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load to remove deleted records</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255786#M850391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can delete rows from the QVD by reconcilling using and INNER JOIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Orders:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD new incremental rows....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;// Merge rows from QVD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Concatenate (Orders)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD * FROM Orders.qvd (qvd)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;WHERE NOT Exists(OrderId);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;// Process deletes&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;INNER JOIN (Orders)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;SQL SELECT OrderId FROM Sales.Orders;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;STORE Orders INTO Orders.qvd;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 22:37:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255786#M850391</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2017-03-08T22:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load to remove deleted records</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255787#M850392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks you very much, this has worked for me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 07:56:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255787#M850392</guid>
      <dc:creator>ccsimo16</dc:creator>
      <dc:date>2017-03-09T07:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load to remove deleted records</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255788#M850393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ROB,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;Please give the answer of the incremental load scenario:&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;Yesterday we have loaded the data that contains 100 rows and today user has deleted 5 records from source database and your incremental load run so no inserted record will found because their n new record is inserted and updated but 5 record is deleted from source data. How incremental load is identify the those 5 deleted record and present in your QVD.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;I need t know today which record is deleted.&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Apr 2017 14:50:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255788#M850393</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-20T14:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load to remove deleted records</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255789#M850394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To identify the records that have been deleted. &lt;/P&gt;&lt;P&gt;1. Load all the keys from the source database in a new field, for example "Key2". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Load the QVD Keys using &lt;/P&gt;&lt;P&gt;where not exists(Key2, Key)&lt;/P&gt;&lt;P&gt;to load a table of the deleted keys. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2017 17:01:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-to-remove-deleted-records/m-p/1255789#M850394</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2017-04-21T17:01:16Z</dc:date>
    </item>
  </channel>
</rss>

