<?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 incremental load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/736857#M263530</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;how can i load new inserting data in data base .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;i did use where condition but it will come total data so i dont want total data i want only newly inserting data pls kindly solve this problem&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;i did attach file what did am i done&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Aug 2014 04:20:27 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-08-08T04:20:27Z</dc:date>
    <item>
      <title>incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/736857#M263530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;how can i load new inserting data in data base .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;i did use where condition but it will come total data so i dont want total data i want only newly inserting data pls kindly solve this problem&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;i did attach file what did am i done&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2014 04:20:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/736857#M263530</guid>
      <dc:creator />
      <dc:date>2014-08-08T04:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/736858#M263531</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;"&gt;Please check the incremental load sample in the QV cookbook ( available here:&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com/downloads/" style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7;"&gt;http://robwunderlich.com/downloads/&lt;/A&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; ). It should explain quite nicely how to handle new / updated / deleted records.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;Thanks!&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2014 04:56:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/736858#M263531</guid>
      <dc:creator />
      <dc:date>2014-08-08T04:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/736859#M263532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;a simple approach can be followed like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//create an old date as base date&lt;/P&gt;&lt;P&gt;let vDate = Date(0,'MM/DD/YYYY');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(QvdCreateTime('customer.qvd')&amp;gt;0) then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; loadorderdate:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; load max(OrderDate) as mxdt from customer.qvd(qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vDate = Date(peek('mxdt',0,'loadorderdate'),'MM/DD/YYYY'); // update the vDate with max OrderDate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop table loadorderdate;&lt;/P&gt;&lt;P&gt;endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Customer:&lt;/P&gt;&lt;P&gt;load *, OrderDate from Customer where OrderDate &amp;gt; '$(vDate)'; // Only new orders will be loaded from the source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//rest of the data to be loaded from QVD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(QvdCreateTime('customer.qvd')&amp;gt;0) then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; concatenate load * from customer.qvd(qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // where not Exist(CustomerID) // use this where clause if you want to update the records&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store Customer into Customer.qvd(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2014 05:16:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/736859#M263532</guid>
      <dc:creator>sudeepkm</dc:creator>
      <dc:date>2014-08-08T05:16:17Z</dc:date>
    </item>
  </channel>
</rss>

