<?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 and Refresh QVD with date and time in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691895#M1066012</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 14 Sep 2014 14:45:19 GMT</pubDate>
    <dc:creator>reshmakala</dc:creator>
    <dc:date>2014-09-14T14:45:19Z</dc:date>
    <item>
      <title>Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691877#M1065994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to QlikView. I had a problem in doing incremental load. I have created a QVD for a table and the data needs to be refreshed everyday. I have a update date in my table which is in the format of 'MM/DD/YYYY hh:mm:ss' . If I use today() function I get the date in the same format. How can I do incremental load when I have update date in 'MM/DD/YYYY hh:mm:ss' format? If I use date() function in Where condition it says missing right parentheses. Please help me out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Sep 2014 21:30:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691877#M1065994</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-09-13T21:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691878#M1065995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you upload the load script where you are getting the syntax error ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 03:38:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691878#M1065995</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-09-14T03:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691879#M1065996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would save the 'timestamp(today())' in the variable. and use the variable in the where condition. Hope this would work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Suraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 04:12:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691879#M1065996</guid>
      <dc:creator />
      <dc:date>2014-09-14T04:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691880#M1065997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you are using Date() function in the where clause while reading from SQL server or oracle you will get an error because you have to use cast function or convert or whatever depends on the platform you use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 04:53:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691880#M1065997</guid>
      <dc:creator>Yousef_Amarneh</dc:creator>
      <dc:date>2014-09-14T04:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691881#M1065998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please find the load script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QVDLoad:&lt;/P&gt;&lt;P&gt;LOAD * from abc.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD UpdateDate Resident QVDLoad&lt;/P&gt;&lt;P&gt;Order by UpdateDate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vUpdate = Peek('UpdateDate',-1,'Temp');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(QVDLoad)&lt;/P&gt;&lt;P&gt;SELECT * &lt;/P&gt;&lt;P&gt;FROM "Tablename"&lt;/P&gt;&lt;P&gt;WHERE (timestamp("UpdateDate") &amp;gt; Timestamp('$(vUpdate)')) AND (Country = 'US');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me to solve this. I use Oracle Database.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 05:26:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691881#M1065998</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-09-14T05:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691882#M1065999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply. Timestamp - invalid identifier is the error that I am getting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 05:27:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691882#M1065999</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-09-14T05:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691883#M1066000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes...I am using Oracle Database. I get error for any function used in WHERE clause.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 05:27:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691883#M1066000</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-09-14T05:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691884#M1066001</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;try this&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;&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;WHERE (To_Date(UpdateDate',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'MM/DD/YYYY hh:mm:ss'&lt;/SPAN&gt;) &amp;gt; Timestamp('$(vUpdate)')) AND (Country = 'US');&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 05:38:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691884#M1066001</guid>
      <dc:creator>Yousef_Amarneh</dc:creator>
      <dc:date>2014-09-14T05:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691885#M1066002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/66657_Capture.JPG.jpg" style="width: 620px; height: 33px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get this error now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 06:05:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691885#M1066002</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-09-14T06:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691886#M1066003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't have oracle to test the query but try this &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;"&gt;WHERE (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;To_Date&lt;/SPAN&gt;(UpdateDate',&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'MM/DD/YYYY hh:mm:ss'&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;) &amp;gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;To_Date&lt;/SPAN&gt;('$(vUpdate)',&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'MM/DD/YYYY hh:mm:ss'&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;)&lt;/SPAN&gt;) AND (Country = 'US');&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;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 06:07:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691886#M1066003</guid>
      <dc:creator>Yousef_Amarneh</dc:creator>
      <dc:date>2014-09-14T06:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691887#M1066004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Capture2.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/66658_Capture2.JPG.jpg" style="width: 620px; height: 23px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the error that I am getting&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 06:16:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691887#M1066004</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-09-14T06:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691888#M1066005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for taking time to solve my issue. If I use this... the error is missing expression. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 06:24:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691888#M1066005</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-09-14T06:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691889#M1066006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is your Oracle field a date (date and time) or a timestamp?&lt;/P&gt;&lt;P&gt;for date this works, you can adapt to your script (see comment about oracle vs Qlik format)&lt;/P&gt;&lt;P&gt;hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;OLEDB CONNECT32 TO .........;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;directory;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG&gt;// first run, not incremental&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;IF NOT Alt(FileSize('abc.qvd'),0) &amp;gt;0 THEN&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; TRACE 'file doesnt exists';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; abc:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; load&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; COUNTRY as Country, REGION as Region, UPDATEDATE as UpdateDate, UPDATEDATE2 as UpdateDate2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; SELECT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; COUNTRY, REGION, UPDATEDATE, UPDATEDATE2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; FROM ZZZ&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; // to_date is an oracle function, DD/MM/YYY is oracle format&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; WHERE UPDATEDATE &amp;gt;= to_date('01/01/2000', 'DD/MM/YYYY');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; STORE abc INTO abc.qvd (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG&gt;// incremental&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;ELSE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; trace 'file exists';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; abc: &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; LOAD * from abc.qvd(qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; Temp: &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; LOAD UpdateDate Resident abc &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; Order by UpdateDate;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; // vUpdate has Qlik format TimestampFormat, mine is SET TimestampFormat='DD/MM/YYYY hh:mm:ss[.fff]';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; Let vUpdate = Peek('UpdateDate',-1,'Temp');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; TRACE vUpdate=$(vUpdate);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; Concatenate (abc)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; load&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; COUNTRY as Country, REGION as Region, UPDATEDATE as UpdateDate, UPDATEDATE2 as UpdateDate2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; SELECT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; COUNTRY, REGION, UPDATEDATE, UPDATEDATE2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; FROM ZZZ&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; // from Qlik string in TimestampFormat to Oracle date (here format is Oracleformat, MI, not mm)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; WHERE UPDATEDATE &amp;gt; to_date('$(vUpdate)', 'DD/MM/YYYY HH:MI:SS');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; STORE abc INTO abc.qvd (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;ENDIF;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 08:07:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691889#M1066006</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-09-14T08:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691890#M1066007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the detailed script. I get the below error with the code you have suggested. My UpdateDate field is of DATE type. Its Oracle DB..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture3.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/66682_Capture3.JPG.jpg" style="width: 620px; height: 39px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 13:19:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691890#M1066007</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-09-14T13:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691891#M1066008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does this blog post help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/blogs/qlikviewdesignblog/2013/02/19/why-don-t-my-dates-work" title="http://community.qlik.com/blogs/qlikviewdesignblog/2013/02/19/why-don-t-my-dates-work"&gt;http://community.qlik.com/blogs/qlikviewdesignblog/2013/02/19/why-don-t-my-dates-work&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 13:44:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691891#M1066008</guid>
      <dc:creator>robert99</dc:creator>
      <dc:date>2014-09-14T13:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691892#M1066009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The script executes now. I made two minor changes. My timestamp format was set to m/d/yyyy h:mm:ss[.fff] TT... I removed TT and tried.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;second change was in oracle time format I put HH24:MI:SS so that it could read time in 24 hour format and it works fine now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your assistance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 13:47:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691892#M1066009</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-09-14T13:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691893#M1066010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.63636302948px;"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;Did you get the error in the incremental (else) part?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.63636302948px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;here?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.63636302948px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt;"&gt;&amp;nbsp; WHERE UPDATEDATE &amp;gt;&amp;nbsp; to_date('$(vUpdate)', '&lt;STRONG&gt;DD/MM/YYYY HH:MI:SS&lt;/STRONG&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.63636302948px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.63636302948px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;My script was tested on an Oracle db with a date field&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;This is my Qlik &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;DateFormat&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and TimestampFormat &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;DD/MM/YYYY&amp;nbsp;&amp;nbsp;&amp;nbsp; DD/MM/YYYY hh:mm:ss[.fff]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;I think you get the error because of different Qlik format&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt;"&gt;You should match the format of vUpdate Qlik variable with the Oracle format in to_date function (bold)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em; font-family: arial, helvetica, sans-serif;"&gt;Example: &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em; font-family: arial, helvetica, sans-serif;"&gt;in my Qlikscript&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em; font-family: arial, helvetica, sans-serif;"&gt;vUpdate is&amp;nbsp; '14/09/2014 09:54:52'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; --&amp;gt; DD/MM/YYYY hh:mm:ss&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;so I used the Oracle format&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10.9090909957886px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;DD/MM/YYYY HH:MI:SS'&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;in to_date() function&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.63636302948px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If your vUpdate is in a different format, change the bold part according your format&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Example: if in your&amp;nbsp; Qlik script&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.63636302948px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;vUpdate is&amp;nbsp; '09/14/2014 09:54:52'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; --&amp;gt; MM/DD/YYYY hh:mm:ss&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.63636302948px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;try with Oracle format&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10.9090909957886px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;MM/DD/YYYY HH:MI:SS'&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;in to_date() function&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.63636302948px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.63636302948px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 13:49:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691893#M1066010</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-09-14T13:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691894#M1066011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ya... my region needs it in MM/DD/YYYY and I did change that. thanks! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 14:03:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691894#M1066011</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-09-14T14:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691895#M1066012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Sep 2014 14:45:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691895#M1066012</guid>
      <dc:creator>reshmakala</dc:creator>
      <dc:date>2014-09-14T14:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load and Refresh QVD with date and time</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691896#M1066013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am looking for this ans for long time great work!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Sep 2014 11:58:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load-and-Refresh-QVD-with-date-and-time/m-p/691896#M1066013</guid>
      <dc:creator />
      <dc:date>2014-09-26T11:58:20Z</dc:date>
    </item>
  </channel>
</rss>

