<?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 How to make script reload faster while developing and testing? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427827#M429828</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Our project script take more then 5 minutes to reload. I don't know if this is a lot or not, but seems quite a lot for me. When I am writing a script and need to test often, this is very time consuming to wait that long.&lt;/P&gt;&lt;P&gt;Please provide some techniques to make reload faster during development and testing. Maybe we are doing bad joins or using residents wrongly etc etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I don't much care (now) how long it will take when it will be done and reloading on daily basis).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 03 Sep 2017 20:16:24 GMT</pubDate>
    <dc:creator>retko1985</dc:creator>
    <dc:date>2017-09-03T20:16:24Z</dc:date>
    <item>
      <title>How to make script reload faster while developing and testing?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427827#M429828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Our project script take more then 5 minutes to reload. I don't know if this is a lot or not, but seems quite a lot for me. When I am writing a script and need to test often, this is very time consuming to wait that long.&lt;/P&gt;&lt;P&gt;Please provide some techniques to make reload faster during development and testing. Maybe we are doing bad joins or using residents wrongly etc etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I don't much care (now) how long it will take when it will be done and reloading on daily basis).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Sep 2017 20:16:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427827#M429828</guid>
      <dc:creator>retko1985</dc:creator>
      <dc:date>2017-09-03T20:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to make script reload faster while developing and testing?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427828#M429829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;During develepping/testing you probably don't need to have the whole data. You can reload on a shorter period or use sample prefix. eg: with sample 0.1, it reload with 10% of random sample data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Sep 2017 20:39:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427828#M429829</guid>
      <dc:creator>sergio0592</dc:creator>
      <dc:date>2017-09-03T20:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to make script reload faster while developing and testing?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427829#M429830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) You can create a QVD-layer and use them without reloading from sources more than necessary. Loading from QVDs compared to accessing a SQL source can be often up to 20x faster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Make use of the BUFFER prefix for LOAD statements which is very good for development. It will make use of and create QVDs automatically for you employing a caching mechanism.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Separate the load script from the UI by having two QVWs. QVW #1 contains the entire loadscript and QVW#2 has a BINARY load in the load script. While developing you can add stuff to the load script in QVW#2 and modify the UI there too. As the new things in the load script matures and getting bug free and tested you move those parts over to QVW #1 at regular intervals.It will make incremental development of the load script and the reloads faster and every now and then you will have to move script and then reload QVW#1 but not so often.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load a QVW data model by BINARY is even faster than loading from QVDs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Sep 2017 22:36:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427829#M429830</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2017-09-03T22:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to make script reload faster while developing and testing?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427830#M429831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are there some other ways? What do we need to be careful about? Which transformations are bad? etc. etc.&lt;/P&gt;&lt;P&gt;If there is a list somewhere, please refer me. &lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 22:11:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427830#M429831</guid>
      <dc:creator>retko1985</dc:creator>
      <dc:date>2017-09-29T22:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to make script reload faster while developing and testing?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427831#M429832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the Debug to reload data instead of the Reload button.&lt;/P&gt;&lt;P&gt;In the Debug, select how many records you want to load, check the Limit Load box&amp;nbsp; and Qlik (click)&amp;nbsp; Run,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/178206_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 22:51:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427831#M429832</guid>
      <dc:creator>jduenyas</dc:creator>
      <dc:date>2017-09-29T22:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to make script reload faster while developing and testing?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427832#M429833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the most important facts are already mentioned by the others especially using qvd's with reduced and fixed datasets because many parts of the development and testings don't need data-updates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This meant you need to use a multi-tier data-architecture and updating the data and changes within the script could be speed up with incremental load-approaches whereby you might need to apply incremental loadings not only for pulling the raw-data else by following (and heavy) transformation-steps, too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you will find many valuable links to this: &lt;A href="https://community.qlik.com/docs/DOC-9038"&gt;Advanced topics for creating a qlik datamodel&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further if possible try to avoid aggregation-loads, joins and nested if-constructions and in general trying to develop the datamodel in the direction of a star-scheme - it's not necessary the fastest option for the load-times but it's often the best compromize for the overall requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Sep 2017 08:36:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427832#M429833</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-09-30T08:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to make script reload faster while developing and testing?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427833#M429834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I often use the first prefix when I need to check the syntax of the script&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ScriptPrefixes/First.htm" title="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ScriptPrefixes/First.htm"&gt;First ‒ QlikView&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Sep 2017 08:56:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-make-script-reload-faster-while-developing-and-testing/m-p/1427833#M429834</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2017-09-30T08:56:22Z</dc:date>
    </item>
  </channel>
</rss>

