<?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 logic help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1536512#M727553</link>
    <description>&lt;P&gt;You need some way to separate the data which is no longer changing (so can be read from your QVD) and data that needs to be read (or re-read) from the data source.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you don't have some way of doing that, you will be unable to use incremental loading.&lt;/P&gt;</description>
    <pubDate>Tue, 29 Jan 2019 12:57:19 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2019-01-29T12:57:19Z</dc:date>
    <item>
      <title>Incremental logic help</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1534816#M727549</link>
      <description>&lt;P&gt;I need to implement incremental logic for the below data based on Cycle start data. If the previous Cycle start date data changes, in qlik how can we achieve that inserted or updated data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID, Name, Cycle Start Date&lt;/P&gt;&lt;P&gt;1,aa,1/2/2019&lt;/P&gt;&lt;P&gt;2,ee,1/3/2019&lt;/P&gt;&lt;P&gt;I am extracting data incrementally with where Cycle Start Date &amp;gt; max(Cycle Start date). But the challenge here is even the previous cycle start date data also modifying and i am not sure how to extract that modify data into qlik with incremental load.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me out to overcome this issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Aamani&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1534816#M727549</guid>
      <dc:creator>ANANNEBO</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental logic help</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1534856#M727550</link>
      <description>&lt;P&gt;You need some way to separate the data which is no longer changing (so can be read from your QVD) and data that needs to be read (or re-read) from the data source. if the dates in your data can change and you want to pick up that change, what other field can you use to distinguish the changed from the unchanged?&lt;/P&gt;&lt;P&gt;If you don't have some way of doing that, you will be unable to use incremental loading.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 05:33:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1534856#M727550</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-01-25T05:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental logic help</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1535043#M727551</link>
      <description>&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;1st make your QVD&lt;/P&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt;IF IsNull(QvdCreateTime('lib://........./example.qvd')) = -1 then&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; example:&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Id,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Cycle Start Date"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM [lib://....] ;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Store example into 'lib://...../QVD_example.qvd';&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Drop table example ;&lt;BR /&gt;&lt;BR /&gt;//Incremental Load&lt;BR /&gt;else&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;MaxModificationDate:&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Max("Cycle Start Date") as MaxModifDate&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; FROM [lib://.../QVD_example.qvd]&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;(qvd);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;LET vLastModificationDate = peek('MaxModifDate',0,'MaxModificationDate');&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;DROP table MaxModificationDate;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Example:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Id,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Cycle Start Date"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM [lib://....] ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (qvd);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Concatenate&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Id,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Cycle Start Date"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM [lib://....] ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; where "Modification Date" &amp;gt; $(vLastModificationDate);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Store OrderDetails into 'lib://...../QVD_example.qvd';&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Drop table Example; &amp;nbsp;&lt;BR /&gt;Endif&lt;BR /&gt;&lt;BR /&gt;Then Check your QVD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regrads&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 11:32:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1535043#M727551</guid>
      <dc:creator>taufiqmaulanaa</dc:creator>
      <dc:date>2019-01-25T11:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental logic help</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1535144#M727552</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually there is no such date change column in our back-end table like update timestamp or modify time stamp. is there any other way to do incremental.&lt;/P&gt;&lt;P&gt;aaaa&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 13:26:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1535144#M727552</guid>
      <dc:creator>ANANNEBO</dc:creator>
      <dc:date>2019-01-25T13:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental logic help</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1536512#M727553</link>
      <description>&lt;P&gt;You need some way to separate the data which is no longer changing (so can be read from your QVD) and data that needs to be read (or re-read) from the data source.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you don't have some way of doing that, you will be unable to use incremental loading.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 12:57:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1536512#M727553</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-01-29T12:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental logic help</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1693409#M727554</link>
      <description>&lt;P&gt;Just wanted to add a link to the Help on this topic in case that may provide some further assistance with things for future visitors to the post.&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/QVD_Incremental.htm" target="_blank"&gt;https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/QVD_Incremental.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2020 17:32:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-logic-help/m-p/1693409#M727554</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-04-14T17:32:24Z</dc:date>
    </item>
  </channel>
</rss>

