<?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 script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318725#M825267</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;IdDate is like 20170714 in sql when I convert that into Date(IdDate) the year coming up with 5 digits ex: 57068 and months and dates are not matching as well.. changed at the script level as well year(IdDate)&amp;nbsp; as Year still its is the same. How do I get Normal 4 digit year. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;@Kushal&amp;nbsp; (IdDate) is updates date ..&lt;/P&gt;&lt;P&gt;@ Andrew ..thanks I will try that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Jul 2017 14:56:22 GMT</pubDate>
    <dc:creator>madhuqliklondon</dc:creator>
    <dc:date>2017-07-17T14:56:22Z</dc:date>
    <item>
      <title>Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318722#M825261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;I have created .qvd file and done initial load by below script &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amount:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&amp;nbsp; [idDate]&lt;/P&gt;&lt;P&gt; ,[idArticle]&lt;/P&gt;&lt;P&gt; ,[idStore]&lt;/P&gt;&lt;P&gt; ,[idCustomer]&lt;/P&gt;&lt;P&gt; ,[Qty]&lt;/P&gt;&lt;P&gt; ,[NetAmount]&lt;/P&gt;&lt;P&gt; ,[BrutAmount]&lt;/P&gt;&lt;P&gt; ,[MarginAmt]&lt;/P&gt;&lt;P&gt; ,[Rank_ArtCust];&lt;/P&gt;&lt;P&gt; sql select * from [wpreplic].[dbo].[WHISTOMVT];&lt;/P&gt;&lt;P&gt; store Amount into C:\Users\madhu\Desktop\Qvd\Amount.qvd(qvd);&lt;/P&gt;&lt;P&gt; DROP Table Amount;&lt;/P&gt;&lt;P&gt;How can write incremental load script for this , the source(sql) is getting updated once in a day. &lt;/P&gt;&lt;P&gt;Thank you &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-script/m-p/1318722#M825261</guid>
      <dc:creator>madhuqliklondon</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318723#M825262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which is the Updated Date in table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2017 14:02:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318723#M825262</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-07-17T14:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318724#M825265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * From C:\Users\madhu\Desktop\Qvd\Amount.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tblMaxDate:&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp; &lt;/P&gt;&lt;P&gt;Floor(Max(Fieldvalue('idDate',RecNo()))) as LastDate&lt;/P&gt;&lt;P&gt;AUTOGENERATE FieldValueCount('idDate');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vLastDate = Date(Peek('tblMaxDate',0,'LastDate'));&lt;/P&gt;&lt;P&gt;DROP Table tblMaxDate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(Amount) // not necessary but explanatory&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; [idDate]&lt;/P&gt;&lt;P&gt;,[idArticle]&lt;/P&gt;&lt;P&gt;,[idStore]&lt;/P&gt;&lt;P&gt;,[idCustomer]&lt;/P&gt;&lt;P&gt;,[Qty]&lt;/P&gt;&lt;P&gt;,[NetAmount]&lt;/P&gt;&lt;P&gt;,[BrutAmount]&lt;/P&gt;&lt;P&gt;,[MarginAmt]&lt;/P&gt;&lt;P&gt;,[Rank_ArtCust];&lt;/P&gt;&lt;P&gt;sql select * from [wpreplic].[dbo].[WHISTOMVT]&lt;/P&gt;&lt;P&gt;WHERE [idDate] &amp;gt; $(vLastDate );&lt;/P&gt;&lt;P&gt;store Amount into C:\Users\madhu\Desktop\Qvd\Amount.qvd(qvd);&lt;/P&gt;&lt;P&gt;DROP Table Amount;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2017 14:11:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318724#M825265</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2017-07-17T14:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318725#M825267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;IdDate is like 20170714 in sql when I convert that into Date(IdDate) the year coming up with 5 digits ex: 57068 and months and dates are not matching as well.. changed at the script level as well year(IdDate)&amp;nbsp; as Year still its is the same. How do I get Normal 4 digit year. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;@Kushal&amp;nbsp; (IdDate) is updates date ..&lt;/P&gt;&lt;P&gt;@ Andrew ..thanks I will try that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2017 14:56:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318725#M825267</guid>
      <dc:creator>madhuqliklondon</dc:creator>
      <dc:date>2017-07-17T14:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318726#M825269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MaxDate:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;LOAD &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;date(max(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[idDate]),'DD/MM/YYYY') as MaxDate&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FROM&amp;nbsp; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;C:\Users\madhu\Desktop\Qvd\Amount.qvd(qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;let vMaxDate = peek('&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MaxDate&lt;/SPAN&gt;',0,'&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MaxDate&lt;/SPAN&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Amount:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; [idDate]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[idArticle]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[idStore]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[idCustomer]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[Qty]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[NetAmount]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[BrutAmount]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[MarginAmt]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[Rank_ArtCust];&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sql select * from [wpreplic].[dbo].[WHISTOMVT]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where to_date(to_char(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;idDate,'DD/MM/YYYY')&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;,'DD/MM/YYYY') &amp;gt; to_date('$(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;vMaxDate&lt;/SPAN&gt;)',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;'DD/MM/YYYY') &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;concatenate(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Amount)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;LOAD *&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FROM&amp;nbsp; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;C:\Users\madhu\Desktop\Qvd\Amount.qvd(qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;store Amount into C:\Users\madhu\Desktop\Qvd\Amount.qvd(qvd);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DROP Table Amount;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 10:26:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318726#M825269</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-07-18T10:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318727#M825270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrew,&lt;/P&gt;&lt;P&gt;It's giving error at this point&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;WHERE [idDate] &amp;gt; $(vLastDate );&amp;nbsp; any idea??&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2017 09:48:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318727#M825270</guid>
      <dc:creator>madhuqliklondon</dc:creator>
      <dc:date>2017-07-20T09:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318728#M825271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kushal , It is not recognizing this part &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;----where to_date(to_char(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;idDate,'DD/MM/YYYY')&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;,'DD/MM/YYYY') &amp;gt; to_date('$(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;vMaxDate&lt;/SPAN&gt;)',&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;'DD/MM/YYYY') &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;It says it is not in built function. Thank you&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2017 09:49:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318728#M825271</guid>
      <dc:creator>madhuqliklondon</dc:creator>
      <dc:date>2017-07-20T09:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318729#M825272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhu,&lt;/P&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #f2f2f2;"&gt;WHERE [idDate] &amp;gt; '$(vLastDate )'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #f2f2f2;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #f2f2f2;"&gt;Good Luck&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #f2f2f2;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #f2f2f2;"&gt;Andrew&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2017 09:56:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318729#M825272</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2017-07-20T09:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318730#M825273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;which database you are using to pull the data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2017 10:11:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318730#M825273</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-07-20T10:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318731#M825274</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;Depending your incremental type (only add, replace, update, etc...) you have here a great post explaining how to do it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/" style="font-size: 10pt;" title="https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/"&gt;https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2017 10:16:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318731#M825274</guid>
      <dc:creator>jmvilaplanap</dc:creator>
      <dc:date>2017-07-20T10:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318732#M825275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sqlserver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2017 10:20:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318732#M825275</guid>
      <dc:creator>madhuqliklondon</dc:creator>
      <dc:date>2017-07-20T10:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318733#M825276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before doing Incremental load convert date to 111 format.&lt;/P&gt;&lt;P&gt;Date should be &lt;STRONG&gt;YYYY/MM/DD, &lt;/STRONG&gt;application will compare fastly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vQvdFile='&lt;SPAN style="font-size: 13.3333px;"&gt;TableName&lt;/SPAN&gt;.QVD';&lt;/P&gt;&lt;P&gt;SET vTableName='TableName';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vQvdExists = if(FileSize('$(vQvdFile)') &amp;gt; 0, -1, 0);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF $(vQvdExists) THEN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;maxdateTab:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD Max(Date(YourDate,'YYYY/MM/DD')) as maxdate&lt;/P&gt;&lt;P&gt;FROM $(vQvdFile) (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vIncrementalExpression = 'where Convert(varchar(10), ("&lt;SPAN style="font-size: 13.3333px;"&gt;YourDate&lt;/SPAN&gt;"),111) &amp;gt;' &amp;amp; Chr(39) &amp;amp; peek('maxdate') &amp;amp; Chr(39);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table maxdateTab;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;LET vIncrementalExpression = '';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END IF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$(vTableName):&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[idDate]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[idArticle]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[idStore]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[idCustomer]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[Qty]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[NetAmount]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[BrutAmount]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[MarginAmt]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,[Rank_ArtCust];&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;SQL select * from [wpreplic].[dbo].[WHISTOMVT];&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;$(vIncrementalExpression);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF $(vQvdExists) THEN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE ($(vTableName))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * FROM $(vQvdFile) (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End IF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE $(vTableName) INTO &lt;SPAN style="font-size: 13.3333px;"&gt;TableName&lt;/SPAN&gt;.QVD (QVD);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table $(vTableName);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2017 10:31:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318733#M825276</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2017-07-20T10:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318734#M825277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then this should work, please check the syntax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2017 11:23:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318734#M825277</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-07-20T11:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318735#M825278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure I will check. Thank you for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2017 11:35:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318735#M825278</guid>
      <dc:creator>madhuqliklondon</dc:creator>
      <dc:date>2017-07-20T11:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load script</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318736#M825279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2017 11:36:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-script/m-p/1318736#M825279</guid>
      <dc:creator>madhuqliklondon</dc:creator>
      <dc:date>2017-07-20T11:36:09Z</dc:date>
    </item>
  </channel>
</rss>

