<?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 QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964251#M952791</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;Can anyone provide me with example. I tried with excel files overriding and qvd also overriding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Nov 2015 13:30:37 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-11-23T13:30:37Z</dc:date>
    <item>
      <title>incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964245#M952785</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 new to Qlikview and have a requirement like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daily I am getting two excel files namely &lt;STRONG&gt;account_inserts&lt;/STRONG&gt; and &lt;STRONG&gt;account_updates(these files will be override on daily basis with latest data)&lt;/STRONG&gt; which don't have any time stamp columns and having only ID column. Finally I want to combine two files as single as account.QVD.&lt;/P&gt;&lt;P&gt;On daily it should append only current month data only not previous months records.&lt;/P&gt;&lt;P&gt;I know incremental load, but this is something different requirement as I am feeling&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me on this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 13:11:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964245#M952785</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-23T13:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964246#M952786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe (pseudo code)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14482846294548349 jive_text_macro" jivemacro_uid="_14482846294548349" modifiedtitle="true"&gt;
&lt;P&gt;//Load your updates&lt;/P&gt;
&lt;P&gt;LOAD *&lt;/P&gt;
&lt;P&gt;FROM [account_updates.xlsx](ooxml, embedded labels, table is Plan1);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;If FileSize('yourqvd.qvd') &amp;gt; 0 then&lt;/P&gt;
&lt;P&gt;//Load your records that are not updated&lt;/P&gt;
&lt;P&gt;LOAD *&lt;/P&gt;
&lt;P&gt;FROM [yourqvd](qvd)&lt;/P&gt;
&lt;P&gt;WHERE NOT Exists(someKeyField);&lt;/P&gt;
&lt;P&gt;endi;f&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;//Load your inserts&lt;/P&gt;
&lt;P&gt;LOAD *&lt;/P&gt;
&lt;P&gt;FROM [account_inserts .xlsx](ooxml, embedded labels, table is Plan1);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;store table into [yourqvd](qvd);&lt;/P&gt;

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 13:17:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964246#M952786</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2015-11-23T13:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964247#M952787</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;Thanks for providing code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this code I have seen qvd file being included. When you do very first time we don't have this file? If I run this code it will throw error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 13:21:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964247#M952787</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-23T13:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964248#M952788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use Binary load in this scenario else where&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open Qlikview &amp;gt; Edit Script&amp;gt; fetch both file into the edit script&amp;gt; name the tables .&amp;nbsp; concatenate both the tables. and Store it as a QVD . then use windows scheduler to automatically get a qvd for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want me to guide for window scheduler do let me know. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 13:23:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964248#M952788</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-23T13:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964249#M952789</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;As mentioned, there is no time stamp/date field in the xls files ur receiving, i suggest to save the QVD with a time stamp say temp_23112015.qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you can manullay(or can define scripts to) deleate or copy the previous month QVDs into a another folder so that only current month QVD files get loaded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is usefull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, SK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 13:24:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964249#M952789</guid>
      <dc:creator>santhosh_k_n</dc:creator>
      <dc:date>2015-11-23T13:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964250#M952790</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;You can use only&amp;nbsp; *&lt;SPAN style="text-decoration: underline;"&gt;.xlsx &lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; As Filename. This will pick all the files which are in the folder .This Data will append automatically and get updated if the Header are same in all excels and You can use the where condition for month field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It can be like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;LOAD *&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;[\*.xls]&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;(biff, embedded labels, table is Sheet1$);&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;regards ,&lt;/P&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 13:26:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964250#M952790</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2015-11-23T13:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964251#M952791</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;Can anyone provide me with example. I tried with excel files overriding and qvd also overriding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 13:30:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964251#M952791</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-23T13:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964252#M952793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I´ve updated the code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 13:40:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964252#M952793</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2015-11-23T13:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964253#M952795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks clever and it is working fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 13:57:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964253#M952795</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-23T13:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964254#M952796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good to know &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2015 16:27:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/incremental-load/m-p/964254#M952796</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2015-11-23T16:27:13Z</dc:date>
    </item>
  </channel>
</rss>

