<?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: How to avoid data load in qlik sense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635740#M47363</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just you stop the task schedule with respect to the APP in QMC,&lt;/P&gt;&lt;P&gt;then DATA not upload automatically,&lt;/P&gt;&lt;P&gt;K. Srinivasan.&lt;/P&gt;</description>
    <pubDate>Wed, 16 Oct 2019 05:09:33 GMT</pubDate>
    <dc:creator>Ksrinivasan</dc:creator>
    <dc:date>2019-10-16T05:09:33Z</dc:date>
    <item>
      <title>How to avoid data load in qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635591#M47349</link>
      <description>&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;We need to&amp;nbsp;avoid the pubblication phase in our QlikSense App, in some circustances (i.e. No Data Updated).&lt;/P&gt;&lt;P&gt;The app is been reloaded every 30 mins, the desired effect is to control the data reload and &lt;STRONG&gt;avoid RAM flush&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that Possible by the QMC or Scripting?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Paolo&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:53:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635591#M47349</guid>
      <dc:creator>rnepla83</dc:creator>
      <dc:date>2024-11-16T19:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid data load in qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635724#M47360</link>
      <description>&lt;P&gt;I think you can do a kind of checking in data load script:&lt;/P&gt;&lt;P&gt;Pseudo code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;if $(vDataChange) then&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;// Reload data&amp;nbsp;&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;&amp;nbsp; // Do nothing&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;To define vDataChange, it will be defined up to your data, such as you you a datetime or sorted order field, then compare new data with max(field) -&amp;gt; you can track if data is updated. Otherwise, you can&amp;nbsp;use checksum to check if there is any change in your data.&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;Calculate checksum of&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 04:25:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635724#M47360</guid>
      <dc:creator>thi_pham</dc:creator>
      <dc:date>2019-10-16T04:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid data load in qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635736#M47361</link>
      <description>&lt;P&gt;If this is an app that is accessed through the hub then the pseudo code above will result in an empty app by not loading any data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The quite ugly workaround to not load any new data and still keep the old data is to generate an error in the ELSE statement.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pseudo code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;if $(vDataChange) then&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;// Reload data&amp;nbsp;&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG&gt;Generating a forced error&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The prettier solution is to use the open Qlik Sense APIs to trigger the application. Maybe let the source system that is generating the file trigger the task execution.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 04:56:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635736#M47361</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-10-16T04:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid data load in qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635739#M47362</link>
      <description>&lt;P&gt;&lt;EM&gt;Hi,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Just you stop the task schedule with respect to the APP in QMC,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;then DATA not upload automatically,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;K. Srinivasan.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 05:03:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635739#M47362</guid>
      <dc:creator>Ksrinivasan</dc:creator>
      <dc:date>2019-10-16T05:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid data load in qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635740#M47363</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just you stop the task schedule with respect to the APP in QMC,&lt;/P&gt;&lt;P&gt;then DATA not upload automatically,&lt;/P&gt;&lt;P&gt;K. Srinivasan.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 05:09:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635740#M47363</guid>
      <dc:creator>Ksrinivasan</dc:creator>
      <dc:date>2019-10-16T05:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid data load in qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635768#M47367</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/25001"&gt;@Vegar&lt;/a&gt;&amp;nbsp;: you're right, I forgot that situation.&amp;nbsp; Thanks for fixing me.&lt;/P&gt;&lt;P&gt;Then, why dont we load data and store to qvd file (which optimized for Qlik to read &amp;amp; write).&amp;nbsp; Similarly to the way we do incremental load.&amp;nbsp;&amp;nbsp;It'll help to get a better performance and avoid impact to the data source if this is the case.&lt;/P&gt;&lt;P&gt;Otherwise, a small C# app which call Qlik Rest API can help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 06:19:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635768#M47367</guid>
      <dc:creator>thi_pham</dc:creator>
      <dc:date>2019-10-16T06:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid data load in qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635928#M47383</link>
      <description>&lt;P&gt;hi Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for the replies.&lt;/P&gt;&lt;P&gt;Visisting some site on gg don't you think is a good approach to make API calls in QS Script, using REST Connector?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;A href="https://support.qlik.com/articles/000048617" target="_blank"&gt;https://support.qlik.com/articles/000048617&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 10:14:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635928#M47383</guid>
      <dc:creator>rnepla83</dc:creator>
      <dc:date>2019-10-16T10:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid data load in qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635929#M47384</link>
      <description>&lt;P&gt;thanks a lot,&lt;/P&gt;&lt;P&gt;I don't think is the approach we need.&lt;/P&gt;&lt;P&gt;We need to stop the Task because is related to another task that run on it success.&lt;/P&gt;&lt;P&gt;So, if you use exit script, is like the task is done as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Paolo.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 10:18:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635929#M47384</guid>
      <dc:creator>rnepla83</dc:creator>
      <dc:date>2019-10-16T10:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid data load in qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635933#M47385</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Thanks, is the last alternative way, i would like to avoide this approach.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 10:19:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635933#M47385</guid>
      <dc:creator>rnepla83</dc:creator>
      <dc:date>2019-10-16T10:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to avoid data load in qlik sense</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635978#M47387</link>
      <description>&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have faced the same situation in my testing,&lt;/P&gt;&lt;P&gt;For that I have load the data and save it as&amp;nbsp; Test.qvd and it schedule to run in the morning 8.00 am.&lt;/P&gt;&lt;P&gt;I have crated another APP to run with&amp;nbsp; out DATA (which has having same header only&amp;nbsp; as Test.qvd)&lt;/P&gt;&lt;P&gt;and overwrite in Test.qvd file by 9.00 schedule.&lt;/P&gt;&lt;P&gt;upto 8.59 actual data available in Test.qvd,&lt;/P&gt;&lt;P&gt;after overwrite app running at 9.00, No data in Test.qvd.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i hope you will like that,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;K. Srinivasan&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 16 Oct 2019 11:13:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-avoid-data-load-in-qlik-sense/m-p/1635978#M47387</guid>
      <dc:creator>Ksrinivasan</dc:creator>
      <dc:date>2019-10-16T11:13:21Z</dc:date>
    </item>
  </channel>
</rss>

