<?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 for dummies in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949552#M1272</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really appreciate your support, however I dont know where to insert that code - please excuse my complete ignorance on the tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far I managed in Qlik Sense Desktop to:&lt;/P&gt;&lt;P&gt;1) read from MSSQL database from a view I created using ODBC&lt;/P&gt;&lt;P&gt;2) Play around with graphs, charts and stuff&lt;/P&gt;&lt;P&gt;3) Im a little bit concerned about record count because the system adds 90 records every 30 minutes -- I already have like 200k records, and keeps growing every day - thats why I asked for help on the incremental load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your patience.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-E&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Aug 2015 03:33:14 GMT</pubDate>
    <dc:creator>edgarestrada</dc:creator>
    <dc:date>2015-08-25T03:33:14Z</dc:date>
    <item>
      <title>Incremental load for dummies</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949547#M1267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys&lt;/P&gt;&lt;P&gt;I read all about the incremental load in the site, including something related to CSVs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I tell sense desktop to get the data from the server that is newer than the last record it has?&lt;/P&gt;&lt;P&gt;My primary key is YYYY-MM-DD-HH:MM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the ideal scenario would be:&lt;/P&gt;&lt;P&gt;1) Query the local data and find the latest record &lt;/P&gt;&lt;P&gt;2) take that date and put it in a variable or something.&lt;/P&gt;&lt;P&gt;3) request from my server to get only those records that are newer than the date from step 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your support.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2015 01:07:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949547#M1267</guid>
      <dc:creator>edgarestrada</dc:creator>
      <dc:date>2015-08-19T01:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load for dummies</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949548#M1268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;I think that is better if you actually store the latest date inside of a qvd and then put that inside a variable instead of storing it in a variable from the beginning&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;check this example, I have not tested it but you should be able to get it to work&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;load&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;MaxDate&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;from Maxdate.qvd(qvd);&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;let vMaxDate = num(FieldValue('&lt;SPAN style="font-size: 13.3333330154419px;"&gt;MaxDate&lt;/SPAN&gt;',FieldValueCount('&lt;SPAN style="font-size: 13.3333330154419px;"&gt;MaxDate&lt;/SPAN&gt;'))); // this is used in case more than one row is added to the qvd&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;load&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;*;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;sql select&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;from yourtable&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;where date &amp;gt;'$(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;vMaxDate&lt;/SPAN&gt;)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;let vMaxDate = num(FieldValue('Date',FieldValueCount('Date')));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;MaxDate:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;load&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;$(vMaxDate) as &lt;SPAN style="font-size: 13.3333330154419px;"&gt;MaxDate&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;autogenerate(1);&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;store MaxDate into &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Maxdate.qvd(qvd);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;drop table &lt;SPAN style="font-size: 13.3333330154419px;"&gt;MaxDate ;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2015 15:28:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949548#M1268</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-08-19T15:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load for dummies</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949549#M1269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramon&lt;/P&gt;&lt;P&gt;I am totally new to Qlik Sense Desktop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt; I dont know how to do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 02:39:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949549#M1269</guid>
      <dc:creator>edgarestrada</dc:creator>
      <dc:date>2015-08-24T02:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load for dummies</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949550#M1270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is it failing ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 16:45:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949550#M1270</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-08-24T16:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load for dummies</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949551#M1271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;added the if condition to check if the file exists or not, let me know if you are having trouble with anything else&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF isnull(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;filetime( '&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333330154419px; background-color: #f2f2f2;"&gt;Maxdate.qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;' )&lt;/SPAN&gt;)&amp;nbsp; THEN // you need to ensure that you are using the correct path for this qvd&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333330154419px; background-color: #f2f2f2;"&gt;vMaxDate = -1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333330154419px; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; load&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MaxDate&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from Maxdate.qvd(qvd);&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vMaxDate = num(FieldValue('&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;MaxDate&lt;/SPAN&gt;',FieldValueCount('&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;MaxDate&lt;/SPAN&gt;'))); // this is used in case more than one&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; row is added to the 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: 13.3333330154419px; background-color: #f2f2f2;"&gt;ENDIF&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: 13.3333330154419px; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;load&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;*;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;sql select&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;from yourtable&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;where date &amp;gt;'$(&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;vMaxDate&lt;/SPAN&gt;)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;let vMaxDate = num(FieldValue('Date',FieldValueCount('Date')));&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;MaxDate:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;load&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;$(vMaxDate) as &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;MaxDate&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;autogenerate(1);&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;store MaxDate into &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;Maxdate.qvd(qvd);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&lt;SPAN style="font-size: 13.3333330154419px; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;drop table &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;MaxDate ;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 16:55:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949551#M1271</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-08-24T16:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load for dummies</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949552#M1272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really appreciate your support, however I dont know where to insert that code - please excuse my complete ignorance on the tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far I managed in Qlik Sense Desktop to:&lt;/P&gt;&lt;P&gt;1) read from MSSQL database from a view I created using ODBC&lt;/P&gt;&lt;P&gt;2) Play around with graphs, charts and stuff&lt;/P&gt;&lt;P&gt;3) Im a little bit concerned about record count because the system adds 90 records every 30 minutes -- I already have like 200k records, and keeps growing every day - thats why I asked for help on the incremental load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your patience.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-E&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 03:33:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949552#M1272</guid>
      <dc:creator>edgarestrada</dc:creator>
      <dc:date>2015-08-25T03:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load for dummies</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949553#M1273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess you got a lot of reading to do&amp;nbsp; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/sense/2.0/en-US/online/#../Subsystems/Hub/Content/LoadData/managing-data.htm%3FTocPath%3DWorking%2520with%2520Qlik%2520Sense%7CManaging%2520data%7CAdding%2520and%2520managing%2520data%2520with%2520the%2520Data%2520manager%7C_____0" title="https://help.qlik.com/sense/2.0/en-US/online/#../Subsystems/Hub/Content/LoadData/managing-data.htm%3FTocPath%3DWorking%2520with%2520Qlik%2520Sense%7CManaging%2520data%7CAdding%2520and%2520managing%2520data%2520with%2520the%2520Data%2520manager%7C_____0"&gt;https://help.qlik.com/sense/2.0/en-US/online/#../Subsystems/Hub/Content/LoadData/managing-data.htm%3FTocPath%3DWorking%2…&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this should help with on how to open and add data for sense&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 17:49:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949553#M1273</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-08-25T17:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load for dummies</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949554#M1274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramon:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works, however is not adding only new records. It completely deletes the history.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;SET DecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='$#,##0.00;-$#,##0.00';&lt;/P&gt;&lt;P&gt;SET TimeFormat='hh:mm:ss TT';&lt;/P&gt;&lt;P&gt;SET DateFormat='DD-MM-YYYY';&lt;/P&gt;&lt;P&gt;SET TimestampFormat='DD-MM-YYYY hh:mm:ss[.fff] TT';&lt;/P&gt;&lt;P&gt;SET MonthNames='ene;feb;mar;abr;may;jun;jul;ago;sep;oct;nov;dic';&lt;/P&gt;&lt;P&gt;SET DayNames='lun;mar;mié;jue;vie;sáb;dom';&lt;/P&gt;&lt;P&gt;SET LongMonthNames='enero;febrero;marzo;abril;mayo;junio;julio;agosto;septiembre;octubre;noviembre;diciembre';&lt;/P&gt;&lt;P&gt;SET LongDayNames='lunes;martes;miércoles;jueves;viernes;sábado;domingo';&lt;/P&gt;&lt;P&gt;SET FirstWeekDay=6;&lt;/P&gt;&lt;P&gt;SET BrokenWeeks=1;&lt;/P&gt;&lt;P&gt;SET ReferenceDay=0;&lt;/P&gt;&lt;P&gt;SET FirstMonthOfYear=1;&lt;/P&gt;&lt;P&gt;SET CollationLocale='es-MX';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vFolder = 'LIB://QVDs/';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIB CONNECT TO 'masorganica';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF isnull(filetime('$(vFolder)Maxdate.qvd'))&amp;nbsp; THEN // you need to ensure that you are using the correct path for this qvd&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vMaxDate = '2015-07-26 00:00:05';&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MaxDate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from '$(vFolder)Maxdate.qvd'(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vMaxDate = FieldValue('MaxDate',1); // this is used in case more than one&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; row is added to the qvd&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[vistaLecturas]:&lt;/P&gt;&lt;P&gt;loada&lt;/P&gt;&lt;P&gt;*;&lt;/P&gt;&lt;P&gt;sql select &lt;/P&gt;&lt;P&gt;*&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM "central"."dbo"."vistaLecturas"&lt;/P&gt;&lt;P&gt;where Momento &amp;gt; '$(vMaxDate)' order by momento DESC; //here we get the last date in the DB, we should store it locally&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let nMaxDate = FieldValue('Momento',1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MaxDate:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;'$(nMaxDate)' as MaxDate&lt;/P&gt;&lt;P&gt;autogenerate(1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store MaxDate into '$(vFolder)Maxdate.qvd' (qvd);&lt;/P&gt;&lt;P&gt;drop table MaxDate ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[bombasAuxiliaresActivadas]:&lt;/P&gt;&lt;P&gt;LIB CONNECT TO [masorganica];&lt;/P&gt;&lt;P&gt;LOAD [Dia],&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Hora],&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Minuto],&lt;/P&gt;&lt;P&gt;&amp;nbsp; [statusBombaAuxiliar1],&lt;/P&gt;&lt;P&gt;&amp;nbsp; [statusBombaAuxiliar2];&lt;/P&gt;&lt;P&gt;SQL SELECT&amp;nbsp; "Dia",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Hora",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Minuto",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "statusBombaAuxiliar1",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "statusBombaAuxiliar2"&lt;/P&gt;&lt;P&gt;FROM "central"."dbo"."bombasAuxiliaresActivadas";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[sumpTank1SinAgua]:&lt;/P&gt;&lt;P&gt;LIB CONNECT TO [masorganica];&lt;/P&gt;&lt;P&gt;LOAD [Dia],&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Hora],&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Minuto],&lt;/P&gt;&lt;P&gt;&amp;nbsp; [sumpTank1];&lt;/P&gt;&lt;P&gt;SQL SELECT&amp;nbsp; "Dia",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Hora",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Minuto",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "sumpTank1"&lt;/P&gt;&lt;P&gt;FROM "central"."dbo"."sumpTank1SinAgua";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[sumpTank2SinAgua]:&lt;/P&gt;&lt;P&gt;LIB CONNECT TO [masorganica];&lt;/P&gt;&lt;P&gt;LOAD [Dia],&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Hora],&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Minuto],&lt;/P&gt;&lt;P&gt;&amp;nbsp; [sumpTank2];&lt;/P&gt;&lt;P&gt;SQL SELECT&amp;nbsp; "Dia",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Hora",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Minuto",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "sumpTank2"&lt;/P&gt;&lt;P&gt;FROM "central"."dbo"."sumpTank2SinAgua";&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 05:50:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949554#M1274</guid>
      <dc:creator>edgarestrada</dc:creator>
      <dc:date>2015-08-27T05:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load for dummies</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949555#M1275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Edgar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the questions you have asked for are absolutely possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please go through this document for deeper insight: &lt;A href="https://community.qlik.com/docs/DOC-9531"&gt;Incremental Load in Qlikview - Sources&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Incremental load is the same with QlikView or QlikSense&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Nov 2015 14:26:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949555#M1275</guid>
      <dc:creator>reddy-s</dc:creator>
      <dc:date>2015-11-20T14:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load for dummies</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949556#M1276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much, Sangram!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Fri, Nov 20, 2015 at 8:27 AM, sangram Reddy &amp;lt;qcwebmaster@qlikview.com&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Nov 2015 16:13:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Incremental-load-for-dummies/m-p/949556#M1276</guid>
      <dc:creator>edgarestrada</dc:creator>
      <dc:date>2015-11-20T16:13:06Z</dc:date>
    </item>
  </channel>
</rss>

