<?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 Load only the last day's data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610648#M1098308</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;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I have a very heavy qvd document that runs once an hour for about 20 mins, which brings data for several years.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Some of the loads in the document are incremental, and some are full.&lt;/P&gt;&lt;P&gt;My task is to create the same document but it will have to show only the last 24 hours and be reloaded every 10 mins.&lt;/P&gt;&lt;P&gt;What's the way to do this?&lt;/P&gt;&lt;P&gt;Plus what's the way to do this without interrupting the every-hour process (cause the exact same tables will be used in 2 documents)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 May 2014 07:29:30 GMT</pubDate>
    <dc:creator>linoyel</dc:creator>
    <dc:date>2014-05-08T07:29:30Z</dc:date>
    <item>
      <title>Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610648#M1098308</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;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I have a very heavy qvd document that runs once an hour for about 20 mins, which brings data for several years.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Some of the loads in the document are incremental, and some are full.&lt;/P&gt;&lt;P&gt;My task is to create the same document but it will have to show only the last 24 hours and be reloaded every 10 mins.&lt;/P&gt;&lt;P&gt;What's the way to do this?&lt;/P&gt;&lt;P&gt;Plus what's the way to do this without interrupting the every-hour process (cause the exact same tables will be used in 2 documents)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 07:29:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610648#M1098308</guid>
      <dc:creator>linoyel</dc:creator>
      <dc:date>2014-05-08T07:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610649#M1098309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have a timstamp field in source file, you can try like:&lt;/P&gt;&lt;P&gt;Let vTime=Now()-Time#(24,'hh');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;From &amp;lt;&amp;gt; Where &amp;lt;TimestampFiled&amp;gt; &amp;gt;= '$(vTime)' ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note, you have to careful of format of timestamp.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 07:37:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610649#M1098309</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-05-08T07:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610650#M1098310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try also but add a timestamp field in the database &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vTime24 =&amp;nbsp; Timestamp(Now()-1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;*&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;From Location&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where&amp;nbsp; YourTimestampField &amp;gt;= Timestamp(Now()-1);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;*&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;From Location&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where&amp;nbsp; YourTimestampField &amp;gt;= $(vTime24);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;and schedule the application 24 back and when you can reload the application it gives 24 back data from Now()&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 07:54:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610650#M1098310</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-05-08T07:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610651#M1098312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, thank you for your responses!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more thing:&lt;/P&gt;&lt;P&gt;Lets say I have a new qvd document that contains 1 tab and it reloads every 20 mins.&lt;/P&gt;&lt;P&gt;Is it possible to add it to another qvd document that reloads every 1 hour?&lt;/P&gt;&lt;P&gt;Meaning that when&amp;nbsp; the user will open the main document, he'll see one tab updated every 20 mins and all other tabs updated every 1 hour?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 09:46:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610651#M1098312</guid>
      <dc:creator>linoyel</dc:creator>
      <dc:date>2014-05-08T09:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610652#M1098314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the concept of &lt;STRONG&gt;Binay load.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Application1 -&amp;gt;20mins reload&lt;/P&gt;&lt;P&gt;Application2 -&amp;gt;1Hr reload&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Application2 should be incorporated in Application1 using binary load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 09:52:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610652#M1098314</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-05-08T09:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610653#M1098315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last question &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I reload the documents in QMC - they appear in QV desktop --&amp;gt; Open in Server.&lt;/P&gt;&lt;P&gt;But the small document with 1 tab that reloads every 20 mins is only a help document which I'll binary upload into the main one, as you've suggested.&lt;/P&gt;&lt;P&gt;Is there a way to hide the help document from users?&lt;/P&gt;&lt;P&gt;(I know that if I schedule the small doc in Task Scheduler it would solve the issue, but I prefer to have all my docs in the same place and reload them in QMC)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 10:27:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610653#M1098315</guid>
      <dc:creator>linoyel</dc:creator>
      <dc:date>2014-05-08T10:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610654#M1098316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/cry.png" /&gt;... feel like crying ! you did not mark mine as correct !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well, coming to your next question. Yes, you just have to restrict the UI part; don't design it for that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 10:45:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610654#M1098316</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-05-08T10:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610655#M1098317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks if you got correct answer from the thread so mark the appropriate answer as Correct or Helpful for members and close the thread. If you have another question then post a thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 10:48:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610655#M1098317</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-05-08T10:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610656#M1098318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hahaha sorry &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Just didn't know which one of your answers to mark as correct cause there are quite a few &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Where should I restrict the UI part?...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 10:50:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610656#M1098318</guid>
      <dc:creator>linoyel</dc:creator>
      <dc:date>2014-05-08T10:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610657#M1098319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use binary load, only the model comes to the new application, not the UI part. And users are not aware of the model. So, design your UI in the new application(may be Help one for your case) to keep the ones from another application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 10:59:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610657#M1098319</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-05-08T10:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610658#M1098320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, as I understand, I should binary upload the main document into the small one, so the data I need from the small doc will be updated every 20 mins?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 11:36:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610658#M1098320</guid>
      <dc:creator>linoyel</dc:creator>
      <dc:date>2014-05-08T11:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610659#M1098321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even I meant so. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 11:40:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610659#M1098321</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-05-08T11:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610660#M1098322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cool &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 11:50:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610660#M1098322</guid>
      <dc:creator>linoyel</dc:creator>
      <dc:date>2014-05-08T11:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: Load only the last day's data</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610661#M1098323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It gets stuck after the reload...&lt;/P&gt;&lt;P&gt;Maybe it's because the small document is actually the exact copy (just with less data) of the main one?&lt;/P&gt;&lt;P&gt;All field names are the same.. maybe that's what is causing the problem?&lt;/P&gt;&lt;P&gt;In binary load should I make 2 completely different data sets?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 12:48:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-the-last-day-s-data/m-p/610661#M1098323</guid>
      <dc:creator>linoyel</dc:creator>
      <dc:date>2014-05-08T12:48:56Z</dc:date>
    </item>
  </channel>
</rss>

