<?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: Re: Incremental load problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496792#M185723</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can concatenate however you want. The problem you are having is in step 3:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;where not Exists (ID)&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;All the ID values were loaded in step 1, therefore the test will never be true. You need to make a copy of ID and test against that. &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;In Step 2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;LOAD *, ID as ID2...&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;In Step 3:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;where not Exists (ID2,ID)&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;Before the STORE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;DROP FIELD ID2;&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;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com"&gt;http://robwunderlich.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Oct 2013 16:24:34 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2013-10-01T16:24:34Z</dc:date>
    <item>
      <title>Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496784#M185715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;// step 1. Load a QVD file&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Temp_Decrypt:&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; *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; From $(vFullFileName)(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;//step 2. Load latest data from Database&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Temp_Incremental:&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; *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL Select *FROM vResTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where TimeModified &amp;lt;= '2013-09-13';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;// step 3: Concatenate for incremental load&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Concatenate (Temp_Incremental)&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; *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resident Temp_Decrypt: // with resident table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where not Exists (ID);&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;//step 4: store&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;STORE Temp_Incremental into $(vFullFileName);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is&lt;/P&gt;&lt;P&gt;in step 5 it stores only data retrieved in step2 i.e. it is not concatenating with data retrieved in step 1. I do not have option to avoid step 1 and directly use the QVD file used in step3:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I avoid step1. and directly use QVD file in step 3 then everything works fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 00:31:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496784#M185715</guid>
      <dc:creator />
      <dc:date>2013-10-01T00:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496785#M185716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hai Ramya&amp;nbsp; I am sending one doc refer it ......this may&amp;nbsp; help to solve&amp;nbsp; your problem...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 03:42:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496785#M185716</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2013-10-01T03:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496786#M185717</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;If I avoid step1. and directly use QVD file in step 3 then everything works fine.&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Correct. That is the way it's supposed to work. You should load the QVD data only after loadin ghte updated rows from the DB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 04:30:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496786#M185717</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-10-01T04:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496787#M185718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you provide me any QVW for incremental load for fact table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 06:37:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496787#M185718</guid>
      <dc:creator />
      <dc:date>2013-10-01T06:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496788#M185719</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; You can go on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="http://robwunderlich.com/"&gt;http://robwunderlich.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; And in download section you can download the cookbook, which has a good numbers of example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 06:41:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496788#M185719</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2013-10-01T06:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496789#M185720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like below, this should work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//step 1. Load latest data from Database&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Temp_Incremental:&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; *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL Select *FROM vResTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where TimeModified &amp;lt;= '2013-09-13';&lt;/P&gt;&lt;P&gt;// step 2. Load all data except data loaded previously from the QVD file&lt;/P&gt;&lt;P&gt; Concatenate (Temp_Incremental)&lt;BR /&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; *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; From $(vFullFileName)(qvd)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where not Exists (ID);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;//step 3: store &lt;/P&gt;&lt;P&gt;STORE Temp_Incremental into $(vFullFileName);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 07:43:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496789#M185720</guid>
      <dc:creator>amars</dc:creator>
      <dc:date>2013-10-01T07:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496790#M185721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;My data is encrypted in QVD file so I can not directly use data from QVD file. I need to bring it to cache and decrypt and then concatenate it. That's why I have step 1 where i decrypt data.&lt;/P&gt;&lt;P&gt;My question is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;isn't it possible to concatenate two resident tables?&lt;/P&gt;&lt;P&gt;what's difference does it make whether data is coming from QVD or Resident table in step 3?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the other way I made it make it work by dumping my decrypted data in another QVD file and use that QVD file in step 3. but that way...i am exposing my encrypted data for a brief moment which i want to avoid.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 14:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496790#M185721</guid>
      <dc:creator />
      <dc:date>2013-10-01T14:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496791#M185722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;I can not avoid step 1 where i load my decrypted data from QVD file in resident table. My data is encrypted in QVD file and i can not perform concatenation on that.&lt;/P&gt;&lt;P&gt;I have omitted the decrypt function name from my code but you can make out from then name of the resident table.&lt;/P&gt;&lt;P&gt;I want to do the concatenation process with my resident table which has decrypted data. Is there any limitation of Qlikview that it can not do concatenation for incremental load with resident table.&lt;/P&gt;&lt;P&gt;Saurabh &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 14:52:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496791#M185722</guid>
      <dc:creator />
      <dc:date>2013-10-01T14:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496792#M185723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can concatenate however you want. The problem you are having is in step 3:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;where not Exists (ID)&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;All the ID values were loaded in step 1, therefore the test will never be true. You need to make a copy of ID and test against that. &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;In Step 2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;LOAD *, ID as ID2...&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;In Step 3:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;where not Exists (ID2,ID)&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;Before the STORE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;DROP FIELD ID2;&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;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com"&gt;http://robwunderlich.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 16:24:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496792#M185723</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-10-01T16:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496793#M185724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;but why did you drop Field..why is it needed?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 19:46:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496793#M185724</guid>
      <dc:creator />
      <dc:date>2013-10-01T19:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load problem</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496794#M185725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Field ID2 was created just as a place to collect the ID values loaded in Step 2. ID2 is only needed for the WHERE NOT EXISTS test in Step3, as a filtering mechanism. It is not needed after that and should not be kept in the final data model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2013 22:36:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load-problem/m-p/496794#M185725</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-10-01T22:36:06Z</dc:date>
    </item>
  </channel>
</rss>

