<?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 Problem w/ Incremental Load and the Store statement in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-w-Incremental-Load-and-the-Store-statement/m-p/208463#M63832</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So my code looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MaxDateTable:&lt;BR /&gt;LOAD max([Status Update Date]) as 'MaxDate'&lt;BR /&gt;&lt;BR /&gt;FROM [CustomerLog.qvd]&lt;BR /&gt;(qvd);&lt;BR /&gt;LET INCREMENTAL_EXP = 'WHERE STATUS_UPDATE_DATE &amp;gt;=' &amp;amp; fieldValue('MaxDate', 1);&lt;BR /&gt;&lt;BR /&gt;DROP TABLE MaxDateTable;&lt;BR /&gt;&lt;BR /&gt;CustomerLog:&lt;BR /&gt;LOAD&lt;BR /&gt; autonumberhash128(#CUSTOMER_ACCOUNT_NUMBER,SERVICE_ADDRESS, STATUS, STATUS_UPDATE_DATE) as 'ID',&lt;BR /&gt; #CUSTOMER_ACCOUNT_NUMBER as 'Account Number',&lt;BR /&gt; SERVICE_ADDRESS as 'Address',&lt;BR /&gt; STATUS as 'Status',&lt;BR /&gt; STATUS_UPDATE_DATE as 'Status Update Date',&lt;BR /&gt; CREDIT_SCORE_RATING as 'Credit Score'&lt;BR /&gt;FROM&lt;BR /&gt;[REPORT_CUSTOMER_LOG.01042011.csv]&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq)&lt;BR /&gt;&lt;BR /&gt;$(INCREMENTAL_EXP); //Where Status Update Date &amp;lt; Max Date&lt;BR /&gt;&lt;BR /&gt;CONCATENATE LOAD&lt;BR /&gt; autonumberhash128([Account Number],[Address],[Status],[Status Update Date]) as 'ID',&lt;BR /&gt; [Account Number],&lt;BR /&gt; Address,&lt;BR /&gt; Status,&lt;BR /&gt; [Status Update Date],&lt;BR /&gt; [Credit Score]&lt;BR /&gt;FROM&lt;BR /&gt;[CustomerLog.qvd]&lt;BR /&gt;(qvd);&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;Store CustomerLog INTO CustomerLog.qvd;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is the last statement (in bold). If I leave it as CustomerLog.qvd it will say "Execution of script failed. Reload old data?" (after it does all the loading, but it doesn't matter since it just goes back pre-load anyway) However, if I put it as "Store CustomerLog into CustomerLog2.qvd" it works fine. The only thing I can figure is that I'm storing it as the same file name as the original .qvd that I'm loading the data from and for some reason you can't do that. I've looked at the example in the cookbook many times and I swear it does this same thing with no problem... Can anyone help me out? I'm a real beginner at this stuff and I'm shocked I got it to work at all honestly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Feb 2011 16:40:29 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-02-09T16:40:29Z</dc:date>
    <item>
      <title>Problem w/ Incremental Load and the Store statement</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-w-Incremental-Load-and-the-Store-statement/m-p/208463#M63832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So my code looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MaxDateTable:&lt;BR /&gt;LOAD max([Status Update Date]) as 'MaxDate'&lt;BR /&gt;&lt;BR /&gt;FROM [CustomerLog.qvd]&lt;BR /&gt;(qvd);&lt;BR /&gt;LET INCREMENTAL_EXP = 'WHERE STATUS_UPDATE_DATE &amp;gt;=' &amp;amp; fieldValue('MaxDate', 1);&lt;BR /&gt;&lt;BR /&gt;DROP TABLE MaxDateTable;&lt;BR /&gt;&lt;BR /&gt;CustomerLog:&lt;BR /&gt;LOAD&lt;BR /&gt; autonumberhash128(#CUSTOMER_ACCOUNT_NUMBER,SERVICE_ADDRESS, STATUS, STATUS_UPDATE_DATE) as 'ID',&lt;BR /&gt; #CUSTOMER_ACCOUNT_NUMBER as 'Account Number',&lt;BR /&gt; SERVICE_ADDRESS as 'Address',&lt;BR /&gt; STATUS as 'Status',&lt;BR /&gt; STATUS_UPDATE_DATE as 'Status Update Date',&lt;BR /&gt; CREDIT_SCORE_RATING as 'Credit Score'&lt;BR /&gt;FROM&lt;BR /&gt;[REPORT_CUSTOMER_LOG.01042011.csv]&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq)&lt;BR /&gt;&lt;BR /&gt;$(INCREMENTAL_EXP); //Where Status Update Date &amp;lt; Max Date&lt;BR /&gt;&lt;BR /&gt;CONCATENATE LOAD&lt;BR /&gt; autonumberhash128([Account Number],[Address],[Status],[Status Update Date]) as 'ID',&lt;BR /&gt; [Account Number],&lt;BR /&gt; Address,&lt;BR /&gt; Status,&lt;BR /&gt; [Status Update Date],&lt;BR /&gt; [Credit Score]&lt;BR /&gt;FROM&lt;BR /&gt;[CustomerLog.qvd]&lt;BR /&gt;(qvd);&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;Store CustomerLog INTO CustomerLog.qvd;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is the last statement (in bold). If I leave it as CustomerLog.qvd it will say "Execution of script failed. Reload old data?" (after it does all the loading, but it doesn't matter since it just goes back pre-load anyway) However, if I put it as "Store CustomerLog into CustomerLog2.qvd" it works fine. The only thing I can figure is that I'm storing it as the same file name as the original .qvd that I'm loading the data from and for some reason you can't do that. I've looked at the example in the cookbook many times and I swear it does this same thing with no problem... Can anyone help me out? I'm a real beginner at this stuff and I'm shocked I got it to work at all honestly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Feb 2011 16:40:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-w-Incremental-Load-and-the-Store-statement/m-p/208463#M63832</guid>
      <dc:creator />
      <dc:date>2011-02-09T16:40:29Z</dc:date>
    </item>
    <item>
      <title>Problem w/ Incremental Load and the Store statement</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-w-Incremental-Load-and-the-Store-statement/m-p/208464#M63833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try: 'Store CustomerLog Into CustomerLog.qvd &lt;EM&gt;&lt;STRONG&gt;(QVD)&lt;/STRONG&gt;&lt;/EM&gt;;'&lt;/P&gt;&lt;P&gt;That principal works for me when overwriting old qvd's. The addition of '(QVD)' forces Qv to store the table as a .qvd as apposed to .txt?? - no idea why it has an impact but it has caused issues for me in the past.&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Matt - Visual Analytics Ltd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Feb 2011 16:56:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-w-Incremental-Load-and-the-Store-statement/m-p/208464#M63833</guid>
      <dc:creator>matt_crowther</dc:creator>
      <dc:date>2011-02-09T16:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem w/ Incremental Load and the Store statement</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-w-Incremental-Load-and-the-Store-statement/m-p/208465#M63834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the exact same problem. Adding (QVD) in brackets does not solve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I store the table with another name, it works. For the incremental load i do of course need the identical name:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;value_3&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;periodrw&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;client&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;account&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;project&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Amount.qvd (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;where&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;periodrw&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &amp;lt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(vperiodeladenab)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;STORE&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; Amount &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;into&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Amount.qvd (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Can someone help?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Best regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Astrid&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 10:14:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-w-Incremental-Load-and-the-Store-statement/m-p/208465#M63834</guid>
      <dc:creator />
      <dc:date>2012-09-12T10:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem w/ Incremental Load and the Store statement</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-w-Incremental-Load-and-the-Store-statement/m-p/208466#M63835</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;I just found out that the qvd-name may not be equal to the table name. Before&amp;nbsp; I thought the qvd that I want to store must have another name as the qvd I loaded before...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;workes fine:&lt;/P&gt;&lt;P&gt;Tablename1:&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;a,&lt;/P&gt;&lt;P&gt;b,&lt;/P&gt;&lt;P&gt;c from Tablename2.qvd;&lt;/P&gt;&lt;P&gt;store Tablename1 into Tablenam2.qvd &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does not work:&lt;/P&gt;&lt;P&gt;Tablename1:&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;a,&lt;/P&gt;&lt;P&gt;b,&lt;/P&gt;&lt;P&gt;c from Tablename1.qvd;&lt;/P&gt;&lt;P&gt;store Tablename1 into Tablenam1.qvd &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 11:02:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-w-Incremental-Load-and-the-Store-statement/m-p/208466#M63835</guid>
      <dc:creator />
      <dc:date>2012-09-12T11:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem w/ Incremental Load and the Store statement</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-w-Incremental-Load-and-the-Store-statement/m-p/208467#M63836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, this is because you are loading the file before storing it, and it might remain open (read-only) and therefore you cannot update it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 12:34:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-w-Incremental-Load-and-the-Store-statement/m-p/208467#M63836</guid>
      <dc:creator>jvitantonio</dc:creator>
      <dc:date>2012-09-12T12:34:16Z</dc:date>
    </item>
  </channel>
</rss>

