<?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: Date format for incremental load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228012#M391672</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think so. Could you post your scipt here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Nov 2016 04:25:32 GMT</pubDate>
    <dc:creator>tamilarasu</dc:creator>
    <dc:date>2016-11-11T04:25:32Z</dc:date>
    <item>
      <title>Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228004#M391664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have always confusion on date formats of DB and QV. While doing incremental load, what format we need to follow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have records in Oracle with below format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;01-APR-16 05.23.09.992743000 AM&lt;/P&gt;&lt;P&gt;11-MAR-16 02.32.15.126544000 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In QV environment variables formats is available like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET TimestampFormat='M/D/YYYY h:mm:ss[.fff] TT';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While fetching incremental inserted block i am trying with below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLE1:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAX(INSERTED_DATE) AS MAXDATE&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM [..\Data\Sessions_BaseData.qvd](qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET v_LastReloadDateTime =&amp;nbsp; Timestamp((PEEK('MAXDATE', 0, TABLE1)),'DD-MMM-YY hh:mm:ss.fffffffff TT');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DROP&amp;nbsp; TABLE TABLE1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Is that right way to follow? Or do i need to follow QlikView format?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks,&lt;/P&gt;&lt;P&gt;Raju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 06:43:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228004#M391664</guid>
      <dc:creator>raju_salmon</dc:creator>
      <dc:date>2016-11-10T06:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228005#M391665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use Date# function to interpret the date field like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLE1:&lt;/P&gt;&lt;P&gt;LOAD &lt;STRONG style="color: #ff0000;"&gt;Max(Date#(INSERTED_DATE,'DD-MMM-YY hh.mm.ss.fffffffff TT'))&lt;/STRONG&gt;&amp;nbsp; AS MAXDATE&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Accumulation.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, no labels, table is Input2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;LET v_LastReloadDateTime =&amp;nbsp; Timestamp((PEEK('MAXDATE', 0, TABLE1)),'DD-MMM-YY hh:mm:ss.fffffffff TT');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;DROP TABLE TABLE1;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 06:57:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228005#M391665</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-11-10T06:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228006#M391666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Is there any specific reason to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 07:11:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228006#M391666</guid>
      <dc:creator>raju_salmon</dc:creator>
      <dc:date>2016-11-10T07:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228007#M391667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333300; font-size: 13.3333px;"&gt;If a date field is stored as a string format, &lt;/SPAN&gt;&lt;SPAN style="color: #333300;"&gt;Qlikview won't be able to recognise it as date field. So we are telling Qlikview that the field&lt;/SPAN&gt; (&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #ff0000;"&gt;&lt;STRONG&gt;INSERTED_DATE&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #333300;"&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #ff0000;"&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;format is&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp; &lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #ff0000;"&gt;&lt;STRONG&gt;DD-MMM-YY hh.mm.ss.fffffffff TT &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #333300;"&gt;using the date# function.&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG style="color: #ff0000; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #333300; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;In your case, first we interpret the date field by mentioning the date format and finding the max value.&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below links might be helpful to understand this better.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.qlikviewaddict.com/2012/08/dates-in-qlikview-part-2.html" title="http://www.qlikviewaddict.com/2012/08/dates-in-qlikview-part-2.html"&gt;QlikView Addict: Dates in QlikView - Part 2&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterpretationFunctions/interpretation-functions.htm" title="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterpretationFunctions/interpretation-functions.htm"&gt;https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/InterpretationFunctions/interpretation-fun…&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 07:33:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228007#M391667</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-11-10T07:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228008#M391668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great. Thank for very helpful explanation. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 08:39:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228008#M391668</guid>
      <dc:creator>raju_salmon</dc:creator>
      <dc:date>2016-11-10T08:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228009#M391669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, I understand that we need to follow the DB format while creating variable. Right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 09:34:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228009#M391669</guid>
      <dc:creator>raju_salmon</dc:creator>
      <dc:date>2016-11-10T09:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228010#M391670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Raju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to specify the format while loading the data. Then max function returns the max date. Finally, you can store the date in a variable then change the format using the formatting function i.e Date(Field_Name,'YourFormat') or &lt;SPAN style="font-size: 13.3333px;"&gt;Timestamp(Field&lt;SPAN style="font-size: 13.3333px;"&gt;_Name&lt;/SPAN&gt;,'YourFormat').&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also try like below. Both should work.&lt;/P&gt;&lt;P&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;TABLE1:&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;LOAD &lt;STRONG&gt;Date(Max(Date#(INSERTED_DATE,'DD-MMM-YY hh.mm.ss.fffffffff TT')), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;'DD-MMM-YY hh:mm:ss.fffffffff TT')&lt;/SPAN&gt; &lt;/STRONG&gt; AS MAXDATE&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Accumulation.xlsx&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, no labels, table is Input2);&lt;/P&gt;&lt;P&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="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;LET v_LastReloadDateTime =&amp;nbsp; PEEK('MAXDATE', 0, TABLE1));&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="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&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;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;DROP TABLE TABLE1;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 14:48:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228010#M391670</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-11-10T14:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228011#M391671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Nag , Does this AM/PM format creates any issue? Because when i am trying to load using where clause, it is taking lot of time to filter the data. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/plain.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 04:14:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228011#M391671</guid>
      <dc:creator>raju_salmon</dc:creator>
      <dc:date>2016-11-11T04:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228012#M391672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think so. Could you post your scipt here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 04:25:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228012#M391672</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-11-11T04:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228013#M391673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In below script, TT is available in format. Because DB format is "11-MAR-16 02.32.15.126544000 PM"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLE1:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAX(INSERTED_DATE) AS MAXDATE&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM [..\Data\Sessions_BaseData.qvd](qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET v_LastReloadDateTime =&amp;nbsp; Timestamp((PEEK('MAXDATE', 0, TABLE1)),'DD-MMM-YY hh:mm:ss.fffffffff TT');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DROP&amp;nbsp; TABLE TABLE1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 04:57:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228013#M391673</guid>
      <dc:creator>raju_salmon</dc:creator>
      <dc:date>2016-11-11T04:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228014#M391674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a question. You want to load max date data into Qlikview, right? If so, timestamp is not needed in ths case.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 05:16:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228014#M391674</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-11-11T05:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228015#M391675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it? I want to take incremental block data is from max date of existing QVD to current sysdate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 06:41:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228015#M391675</guid>
      <dc:creator>raju_salmon</dc:creator>
      <dc:date>2016-11-11T06:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228016#M391676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;TABLE1:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Max&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Date#&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Subfield&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;INSERTED_DATE&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;,' ',1),'DD-MMM-YY')),'DD-MMM-YY') &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;AS&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;MAXDATE&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt; Data;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;LET&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;STRONG style="color: gray; font-size: 9.0pt; font-family: 'Courier New';"&gt;&lt;EM&gt;v_LastReloadDateTime&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;PEEK&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;('MAXDATE', 0, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;TABLE1&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;);&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;Drop&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;Table&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; TABLE1;&amp;nbsp;&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; Final:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;Load&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;From&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; Source &lt;STRONG&gt;Where Date(Date#(Subfield(INSERTED_DATE,' ',1),'DD-MMM-YY'),'DD-MMM-YY')&amp;gt; '$(v_LastReloadDateTime)'; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 07:31:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228016#M391676</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-11-11T07:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228017#M391677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then it will take old record also... right? I need to use where not exist to exclude already available records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 08:44:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228017#M391677</guid>
      <dc:creator>raju_salmon</dc:creator>
      <dc:date>2016-11-11T08:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Date format for incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228018#M391678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Raju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will load only new records. Below links might be helpful to understand about incremental load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.learnallbi.com/incremental-load-in-qlikview-part1/" title="http://www.learnallbi.com/incremental-load-in-qlikview-part1/"&gt;Incremental Load in QlikView – Part1 – Learn QlikView&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.learnallbi.com/incremental-load-in-qlikview-part2/" title="http://www.learnallbi.com/incremental-load-in-qlikview-part2/"&gt;Incremental Load in QlikView – Part2 – Learn QlikView&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you explain what you are trying to acheive?&amp;nbsp; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; If possible, please attach some sample data. &lt;SPAN style="font-size: 13.3333px;"&gt;It would be really helpful for me to guide you.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Nov 2016 08:58:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-format-for-incremental-load/m-p/1228018#M391678</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-11-11T08:58:59Z</dc:date>
    </item>
  </channel>
</rss>

