<?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: ORA-01861: literal does not match format string in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409175#M612042</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, but for normal load it works fine without any issues. only for incremental load i am facing the issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Aug 2017 10:35:36 GMT</pubDate>
    <dc:creator>vireshkolagimat</dc:creator>
    <dc:date>2017-08-30T10:35:36Z</dc:date>
    <item>
      <title>ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409165#M612032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting error &lt;STRONG&gt;literal does not match format string&lt;/STRONG&gt; while executing the below script. I am getting the data from oracle database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If QVD not exists, it will run without any issue. but for incremental loading&amp;nbsp; i am facing the above issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using &lt;SPAN style="font-size: 13.3333px;"&gt;vIncrementalExpression&amp;nbsp; variable to filter for latest records.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vQvdFile='C:\SalesPipeling.qvd';&lt;/P&gt;&lt;P&gt;SET vTableName='SalesPipeline';&lt;/P&gt;&lt;P&gt;SET vPK='SalesSalesPipelineId';&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;maxdateTab:&lt;/P&gt;&lt;P&gt;LOAD max(TransactionDate) as maxdate&lt;/P&gt;&lt;P&gt;FROM $(vQvdFile) (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vMaxdate = Date(Peek('maxdate',0,'maxdateTab'),'YYYY-MM-DD');&lt;/P&gt;&lt;P&gt;LET vLast30Days = Date(Peek('maxdate',0,'maxdateTab')-30,'YYYY-MM-DD');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF IsNull(vMaxdate) then&lt;/P&gt;&lt;P&gt;LET vIncrementalExpression = ''; &lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;LET vIncrementalExpression = 'and TransactionDate &amp;gt;= '&amp;amp;Chr(39)&amp;amp; '$(vLast30Days)' &amp;amp;Chr(39)&amp;amp;&lt;/P&gt;&lt;P&gt;' and TransactionDate &amp;lt;=' &amp;amp;Chr(39)&amp;amp; date(vReloadTime,'YYYY-MM-DD')&amp;amp;Chr(39);&lt;/P&gt;&lt;P&gt;ENDIF;&lt;/P&gt;&lt;P&gt;DROP table maxdateTab;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE // QVD does not exist&lt;/P&gt;&lt;P&gt;LET vIncrementalExpression = 'and extract( YEAR from TransactionDate) &amp;gt;= extract(YEAR from sysdate)-3';&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;$(vTableName):&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp; floor(TRANSACTIONDATE) as TransactionDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;SQL &lt;/P&gt;&lt;P&gt;&amp;nbsp; TRANSACTIONDATE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM APPS.XXEGC_QV_SALES_PIPELINE_V &lt;/P&gt;&lt;P&gt;Where TRANSACTIONDATE &amp;gt; '01-Jan-14'&lt;/P&gt;&lt;P&gt;$(vIncrementalExpression) ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Include WHERE clause created in "Incremental Setup" tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF $(vQvdExists) THEN&lt;/P&gt;&lt;P&gt;// Use CONCATENATE in case we've added any new fields.&lt;/P&gt;&lt;P&gt;CONCATENATE ($(vTableName)) LOAD Distinct *&amp;nbsp; FROM $(vQvdFile) (qvd)&lt;/P&gt;&lt;P&gt;WHERE TransactionDate &amp;lt; '$(vLast30Days)'; &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;If ScriptErrorCount = 0 then&lt;/P&gt;&lt;P&gt;Call StoreAndDrop(vTableName,vQvdFile);&lt;/P&gt;&lt;P&gt;ENDIF;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vQvdFile='';&lt;/P&gt;&lt;P&gt;SET vTableName='';&lt;/P&gt;&lt;P&gt;SET vPK='';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Viresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 09:44:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409165#M612032</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-30T09:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409166#M612033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be check this in Debug option rather full download and highlight that line to troubleshoot. That may help to get into work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:05:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409166#M612033</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-08-30T10:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409167#M612034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think there are some mistakes in SQL statement (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;$(vIncrementalExpression)) &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;Please run in debug mode or check log script, you can see more detail about SQL &lt;SPAN style="font-size: 13.3333px;"&gt;statement &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:08:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409167#M612034</guid>
      <dc:creator>kenphamvn</dc:creator>
      <dc:date>2017-08-30T10:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409168#M612035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, This is what i see in the debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ScriptErrorDetails "SQL##f - SqlState: S1000, ErrorCode: 1861, ErrorMsg: [Oracle][ODBC][Ora]ORA-01861: literal does not match format string "&lt;/P&gt;&lt;P&gt;ScriptErrorList General Error&amp;nbsp; &lt;/P&gt;&lt;P&gt;ScriptError General Error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:14:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409168#M612035</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-30T10:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409169#M612036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not able to find any error in the log file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:15:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409169#M612036</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-30T10:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409170#M612037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;you can using TRACE for output SQL statement ,copy result and run in Oracle Environment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRACE SQL TRANSACTIONDATE, FROM APPS.XXEGC_QV_SALES_PIPELINE_V Where TRANSACTIONDATE &amp;gt; '01-Jan-14'$(vIncrementalExpression) ;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:26:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409170#M612037</guid>
      <dc:creator>kenphamvn</dc:creator>
      <dc:date>2017-08-30T10:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409171#M612038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd suggest looking at your vLast30Days variable. Is this being set up correctly? What value does it contain following the LET statement?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:26:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409171#M612038</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2017-08-30T10:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409172#M612039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;vLast30Days=2017-7-31&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:28:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409172#M612039</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-30T10:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409173#M612040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could be issue here?&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;&lt;STRONG&gt;Date(TRANSACTIONDATE,'Your Format') as &lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;TransactionDate;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:28:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409173#M612040</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-08-30T10:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409174#M612041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That particular Oracle SQL message usually indicates you've attempted to format something as a date that Oracle can't format as a date. Double-check that the formatted dates you are sending the SQL via variables are formatted in the way Oracle expects them, either by replacing the dynamic date ranges with manual date inputs in the same format, or by loading the dynamic values into your regular script and checking the format. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:29:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409174#M612041</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2017-08-30T10:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409175#M612042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, but for normal load it works fine without any issues. only for incremental load i am facing the issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:35:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409175#M612042</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-30T10:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409176#M612043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, so you're mixing your date formats, as in you have the WHERE clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where TRANSACTIONDATE &amp;gt; '01-Jan-14'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, it looks like you're missing a SELECT, and have a superfluous comma in your SQL block, which should be like so&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; TRANSACTIONDATE&lt;SPAN style="text-decoration: line-through;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM APPS.XXEGC_QV_SALES_PIPELINE_V &lt;/P&gt;&lt;P&gt;Where TRANSACTIONDATE &amp;gt; '01-Jan-14'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:41:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409176#M612043</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2017-08-30T10:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409177#M612044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi script looks fine. The only issue i think is the variable i have created. Not able to figure out what's wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:45:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409177#M612044</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-30T10:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409178#M612045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Er I beg to differ. Script is most definitely wrong. Hence you are getting errors. If your script is fine, why are you posting issues?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;prior to the SQL keyword, you have a comma, and no semi colon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$(vTableName):&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; floor(TRANSACTIONDATE) as TransactionDate&lt;SPAN style="font-size: 14pt; text-decoration: line-through;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 14pt;"&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 14pt;"&gt;SELECT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; TRANSACTIONDATE&lt;SPAN style="font-size: 14pt; text-decoration: line-through;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM APPS.XXEGC_QV_SALES_PIPELINE_V&lt;/P&gt;&lt;P&gt;Where TRANSACTIONDATE &amp;gt; '01-Jan-14'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 10:51:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409178#M612045</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2017-08-30T10:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409179#M612046</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;That was&amp;nbsp; by mistake i added while pasting the code. I have semicolon in my script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to run the script without any issue for normal load but for incremental load i am getting the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Viresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 11:05:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409179#M612046</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-30T11:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409180#M612047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok - check this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TransactionDate &amp;lt;=' &amp;amp;Chr(39)&amp;amp; date(&lt;EM&gt;vReloadTime&lt;/EM&gt;,'YYYY-MM-DD')&amp;amp;Chr(39);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is in vReloadTime?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps you could try changing it to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TransactionDate &amp;lt;=' &amp;amp;Chr(39)&amp;amp; date(&lt;STRONG&gt;$(&lt;/STRONG&gt;&lt;EM&gt;vReloadTime&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/EM&gt;,'YYYY-MM-DD')&amp;amp;Chr(39);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 11:13:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409180#M612047</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2017-08-30T11:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409181#M612048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the solution. Actually it is issue with formatting the date. In the where clause it was reading the date as YYYY-MM-DD instead DD-MMM-YY. SO i changed the date format for vLast30day and vReloadTime and finally it is working fine.&lt;/P&gt;&lt;P&gt;here is the update variable expression.&lt;/P&gt;&lt;P&gt;LET vIncrementalExpression = 'Where CUSTOMERCODE not in (''A'',''B'',''C'') and InvoiceDate &amp;gt;=' &amp;amp; Chr(39)&amp;amp; '$(vLast30date)' &amp;amp;Chr(39) &amp;amp;&lt;/P&gt;&lt;P&gt;' and InvoiceDate &amp;lt;=' &amp;amp;Chr(39)&amp;amp; date(vReloadTime,'DD-MMM-YY') &amp;amp;Chr(39);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you all for your valuable suggestions and tips.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Viresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2017 13:55:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409181#M612048</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-31T13:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409182#M612049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good, That is where i declare check in Date format because 01861 is the Format issue in Oracle.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2017 14:08:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1409182#M612049</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-08-31T14:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-01861: literal does not match format string</title>
      <link>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1631580#M612050</link>
      <description>&lt;P&gt;We had the same issue using Oracle OLEDB driver and a sentence:&lt;/P&gt;&lt;P&gt;SQL Select&lt;/P&gt;&lt;P&gt;A,&lt;/P&gt;&lt;P&gt;B,&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;from...&lt;/P&gt;&lt;P&gt;where (vDate...)&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and the solution was automatically when switching to a Oracle ODBC driver without need to changing nothing in script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 17:24:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ORA-01861-literal-does-not-match-format-string/m-p/1631580#M612050</guid>
      <dc:creator>Emmanuelle__Bustos</dc:creator>
      <dc:date>2019-10-04T17:24:52Z</dc:date>
    </item>
  </channel>
</rss>

