<?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 in qvd's in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-load-in-qvd-s/m-p/616153#M681794</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My script is,&lt;/P&gt;&lt;P&gt;SET vExecTime=0;&lt;/P&gt;&lt;P&gt;SET v6MonthsBack=0;&lt;/P&gt;&lt;P&gt;t1:&lt;/P&gt;&lt;P&gt;LOAD LastModifiedDate&lt;/P&gt;&lt;P&gt;FROM D:\Qvds\cnt.qvd(qvd) ;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;LET vExecTime=Peek('LastModifiedDate',0,'t1');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LET v6MonthsBack=AddMonths('$(vExecTime)',-6);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Table1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD Max(LastModifiedDate) as MDate from D:\Qvds\cnt.qvd &lt;/P&gt;&lt;P&gt;Where LastModifiedDate &amp;lt; $(v6MonthsBack);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;concatenate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;SQL select * from dbo.country_info where LastModifiedDate &amp;gt; $(v6MonthsBack) and LastModifiedDate &amp;lt; $(vExecTime) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;STORE Table1 into D:\Qvds\cnt.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's giving me an error &lt;/P&gt;&lt;P&gt;Cannot open file 'D:\Qvds\cnt.qvd &lt;/P&gt;&lt;P&gt;Where LastModifiedDate &amp;lt; 7/3/2013' The filename, directory name, or volume label syntax is incorrect.&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;LOAD Max(LastModifiedDate) as MDate from D:\Qvds\cnt.qvd &lt;/P&gt;&lt;P&gt;Where LastModifiedDate &amp;lt; 7/3/2013 what's this mean?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Mar 2014 07:35:42 GMT</pubDate>
    <dc:creator>vijetas42</dc:creator>
    <dc:date>2014-03-10T07:35:42Z</dc:date>
    <item>
      <title>Incremental load in qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-in-qvd-s/m-p/616151#M681792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I am facing problem in incremental load within qvd's,&lt;/P&gt;&lt;P&gt;my scenario is first time i am doing full load but in next month i want to load only new records and last six months data among which some of the old records are updated how should i do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2014 09:49:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-in-qvd-s/m-p/616151#M681792</guid>
      <dc:creator>vijetas42</dc:creator>
      <dc:date>2014-03-08T09:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load in qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-in-qvd-s/m-p/616152#M681793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in online help search for incremental&lt;/P&gt;&lt;P&gt;Using qvd file for incremental load, case 3, insert and update (no delete)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other useful resources&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-4597"&gt;Incremental Load&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-5508"&gt;Incremental Load.docx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1&gt;&lt;/H1&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2014 11:19:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-in-qvd-s/m-p/616152#M681793</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-03-08T11:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load in qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-in-qvd-s/m-p/616153#M681794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My script is,&lt;/P&gt;&lt;P&gt;SET vExecTime=0;&lt;/P&gt;&lt;P&gt;SET v6MonthsBack=0;&lt;/P&gt;&lt;P&gt;t1:&lt;/P&gt;&lt;P&gt;LOAD LastModifiedDate&lt;/P&gt;&lt;P&gt;FROM D:\Qvds\cnt.qvd(qvd) ;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;LET vExecTime=Peek('LastModifiedDate',0,'t1');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LET v6MonthsBack=AddMonths('$(vExecTime)',-6);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Table1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;LOAD Max(LastModifiedDate) as MDate from D:\Qvds\cnt.qvd &lt;/P&gt;&lt;P&gt;Where LastModifiedDate &amp;lt; $(v6MonthsBack);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;concatenate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;SQL select * from dbo.country_info where LastModifiedDate &amp;gt; $(v6MonthsBack) and LastModifiedDate &amp;lt; $(vExecTime) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;STORE Table1 into D:\Qvds\cnt.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's giving me an error &lt;/P&gt;&lt;P&gt;Cannot open file 'D:\Qvds\cnt.qvd &lt;/P&gt;&lt;P&gt;Where LastModifiedDate &amp;lt; 7/3/2013' The filename, directory name, or volume label syntax is incorrect.&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;LOAD Max(LastModifiedDate) as MDate from D:\Qvds\cnt.qvd &lt;/P&gt;&lt;P&gt;Where LastModifiedDate &amp;lt; 7/3/2013 what's this mean?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2014 07:35:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-in-qvd-s/m-p/616153#M681794</guid>
      <dc:creator>vijetas42</dc:creator>
      <dc:date>2014-03-10T07:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load in qvd's</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-in-qvd-s/m-p/616154#M681795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think there is a space missing before (qvd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;My script is,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SET vExecTime=0;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SET v6MonthsBack=0;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;t1:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD LastModifiedDate&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM D:\Qvds\cnt.qvd (qvd) ;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;LET vExecTime=Peek('LastModifiedDate',0,'t1');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LET v6MonthsBack=AddMonths('$(vExecTime)',-6);&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;Table1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD Max(LastModifiedDate) as MDate from D:\Qvds\cnt.qvd&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Where LastModifiedDate &amp;lt; $(v6MonthsBack);&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;concatenate&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;SQL select * from dbo.country_info where LastModifiedDate &amp;gt; $(v6MonthsBack) and LastModifiedDate &amp;lt; $(vExecTime) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;STORE Table1 into D:\Qvds\cnt.qvd (qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2014 07:55:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-in-qvd-s/m-p/616154#M681795</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2014-03-10T07:55:47Z</dc:date>
    </item>
  </channel>
</rss>

