<?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 Here is good example and use of Partial Reload in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Here-is-good-example-and-use-of-Partial-Reload/m-p/880514#M684598</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Here is good example and use of Partial Reload:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A class="jive-link-external-small" href="http://www.getbisoftware.com/save-time-and-patience-with-partial-reloads-in-qlikview/" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;Save Time and Patience with Partial Reloads in QlikView Get Business Intelligence Software&lt;/A&gt;&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;In the past, you may have added an “Exit Script” statement in your script editor to load only a few tables, or you may have commented out tables you didn’t want to load.&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;Fortunately, there is a faster way that lets you add or replace new tables without reloading the whole script. You can pick and choose the tables you want to reload while still keeping other tables in memory. On the bottom of the File menu you may have noticed the Partial Reload option. This is how it’s used:&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;&lt;A href="http://www.getbisoftware.com/wp-content/uploads/2013/06/Partial-Reloads.jpg" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;&lt;IMG alt="" class="jiveImage" src="http://www.getbisoftware.com/wp-content/uploads/2013/06/Partial-Reloads.jpg" style="border-width: 0px; border-color: #e1e1e1; font-weight: inherit; font-style: inherit; font-family: inherit;" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;1.&amp;nbsp; There are 2 script statements that are used for Partial Reloads. “Add” and “Replace”&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;ADD – Adds an additional table without reloading the entire script. If the table already exists, rows from this run will be appended.&lt;/LI&gt;&lt;LI&gt;REPLACE – Replaces a table without reloading the entire script.&lt;/LI&gt;&lt;/UL&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;2.&amp;nbsp; The three examples below show the difference in loading tables.&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;Table1:&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;&lt;CODE style="padding: 0 10px; font-weight: inherit; font-style: inherit; font-size: 12px; font-family: 'Lucida Console', Courier, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;LOAD&lt;BR /&gt;SalesPerson,&lt;BR /&gt;Territory,&lt;BR /&gt;Amount&lt;BR /&gt;FROM&lt;BR /&gt;[sales.qvd] (qvd);&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;Table2:&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;&lt;CODE style="padding: 0 10px; font-weight: inherit; font-style: inherit; font-size: 12px; font-family: 'Lucida Console', Courier, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;ADD LOAD&lt;BR /&gt;SalesPerson,&lt;BR /&gt;Territory,&lt;BR /&gt;Amount&lt;BR /&gt;FROM&lt;BR /&gt;[sales.qvd] (qvd);&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;Table3:&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;&lt;CODE style="padding: 0 10px; font-weight: inherit; font-style: inherit; font-size: 12px; font-family: 'Lucida Console', Courier, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;REPLACE LOAD&lt;BR /&gt;SalesPerson,&lt;BR /&gt;Territory,&lt;BR /&gt;Amount&lt;BR /&gt;FROM&lt;BR /&gt;[sales.qvd] (qvd);&lt;/CODE&gt;&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;3.&amp;nbsp; In the script editor, use the “Add” or “Replace” statement before the LOAD Statement.&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;4.&amp;nbsp; Save and close the script editor&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;5. Go to the File menu and Select “Partial Reload”&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;Now the only table(s) that are reloaded will be the ones with a “Add” or “Replace” statement. Happy QlikView learning!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Feb 2014 00:34:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-02-07T00:34:03Z</dc:date>
    <item>
      <title>Here is good example and use of Partial Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Here-is-good-example-and-use-of-Partial-Reload/m-p/880514#M684598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Here is good example and use of Partial Reload:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A class="jive-link-external-small" href="http://www.getbisoftware.com/save-time-and-patience-with-partial-reloads-in-qlikview/" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;Save Time and Patience with Partial Reloads in QlikView Get Business Intelligence Software&lt;/A&gt;&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;In the past, you may have added an “Exit Script” statement in your script editor to load only a few tables, or you may have commented out tables you didn’t want to load.&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;Fortunately, there is a faster way that lets you add or replace new tables without reloading the whole script. You can pick and choose the tables you want to reload while still keeping other tables in memory. On the bottom of the File menu you may have noticed the Partial Reload option. This is how it’s used:&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;&lt;A href="http://www.getbisoftware.com/wp-content/uploads/2013/06/Partial-Reloads.jpg" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;&lt;IMG alt="" class="jiveImage" src="http://www.getbisoftware.com/wp-content/uploads/2013/06/Partial-Reloads.jpg" style="border-width: 0px; border-color: #e1e1e1; font-weight: inherit; font-style: inherit; font-family: inherit;" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;1.&amp;nbsp; There are 2 script statements that are used for Partial Reloads. “Add” and “Replace”&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;ADD – Adds an additional table without reloading the entire script. If the table already exists, rows from this run will be appended.&lt;/LI&gt;&lt;LI&gt;REPLACE – Replaces a table without reloading the entire script.&lt;/LI&gt;&lt;/UL&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;2.&amp;nbsp; The three examples below show the difference in loading tables.&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;Table1:&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;&lt;CODE style="padding: 0 10px; font-weight: inherit; font-style: inherit; font-size: 12px; font-family: 'Lucida Console', Courier, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;LOAD&lt;BR /&gt;SalesPerson,&lt;BR /&gt;Territory,&lt;BR /&gt;Amount&lt;BR /&gt;FROM&lt;BR /&gt;[sales.qvd] (qvd);&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;Table2:&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;&lt;CODE style="padding: 0 10px; font-weight: inherit; font-style: inherit; font-size: 12px; font-family: 'Lucida Console', Courier, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;ADD LOAD&lt;BR /&gt;SalesPerson,&lt;BR /&gt;Territory,&lt;BR /&gt;Amount&lt;BR /&gt;FROM&lt;BR /&gt;[sales.qvd] (qvd);&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;Table3:&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;&lt;CODE style="padding: 0 10px; font-weight: inherit; font-style: inherit; font-size: 12px; font-family: 'Lucida Console', Courier, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;REPLACE LOAD&lt;BR /&gt;SalesPerson,&lt;BR /&gt;Territory,&lt;BR /&gt;Amount&lt;BR /&gt;FROM&lt;BR /&gt;[sales.qvd] (qvd);&lt;/CODE&gt;&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;3.&amp;nbsp; In the script editor, use the “Add” or “Replace” statement before the LOAD Statement.&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;4.&amp;nbsp; Save and close the script editor&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;5. Go to the File menu and Select “Partial Reload”&lt;/P&gt;&lt;P style="margin-bottom: 22px; font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; color: #3a3a3a;"&gt;Now the only table(s) that are reloaded will be the ones with a “Add” or “Replace” statement. Happy QlikView learning!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 00:34:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Here-is-good-example-and-use-of-Partial-Reload/m-p/880514#M684598</guid>
      <dc:creator />
      <dc:date>2014-02-07T00:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: Here is good example and use of Partial Reload</title>
      <link>https://community.qlik.com/t5/QlikView/Here-is-good-example-and-use-of-Partial-Reload/m-p/880515#M684600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I appreciate your quick response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing issue when I try to do Partial reload from server (After Publish) using a Partial Reload Button (Action).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/thread/159199" title="https://community.qlik.com/thread/159199"&gt;https://community.qlik.com/thread/159199&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 23:37:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Here-is-good-example-and-use-of-Partial-Reload/m-p/880515#M684600</guid>
      <dc:creator />
      <dc:date>2015-04-08T23:37:35Z</dc:date>
    </item>
  </channel>
</rss>

