<?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: Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265346#M1181982</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Miguel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks….&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have partial reload working on my desktop.  How do I tell the server to only do a partial reload each time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Nov 2011 17:13:45 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-11-29T17:13:45Z</dc:date>
    <item>
      <title>Exclude data sources during reload but retain data</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265342#M1181978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2011 15:54:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265342#M1181978</guid>
      <dc:creator />
      <dc:date>2011-11-29T15:54:43Z</dc:date>
    </item>
    <item>
      <title>Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265343#M1181979</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 do a partial reload (ctlr+shift+R). In the script, put REPLACE before each load in the tables you want to reload. Tables without REPLACE won't change.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2011 16:12:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265343#M1181979</guid>
      <dc:creator>christophebrault</dc:creator>
      <dc:date>2011-11-29T16:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265344#M1181980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent and thanks….&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do you set it so that while sitting on the server and the server refreshes, that it is a partial reload?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2011 16:17:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265344#M1181980</guid>
      <dc:creator />
      <dc:date>2011-11-29T16:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265345#M1181981</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 also save the tables you want to keep into QVD files, then load only the pieces you need. Or even do two load steps, for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;// This one loads without WHERE condition, all records&lt;/P&gt;&lt;P&gt;Invoices:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM InvoicesHistoric.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// This one only loads part of the data, and appends to the above&lt;/P&gt;&lt;P&gt;CONCATENATE (Invoices) LOAD *&lt;/P&gt;&lt;P&gt;FROM InvoicesToday.qvd (qvd)&lt;/P&gt;&lt;P&gt;WHERE Store = 1000;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2011 16:38:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265345#M1181981</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-11-29T16:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265346#M1181982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Miguel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks….&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have partial reload working on my desktop.  How do I tell the server to only do a partial reload each time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2011 17:13:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265346#M1181982</guid>
      <dc:creator />
      <dc:date>2011-11-29T17:13:45Z</dc:date>
    </item>
    <item>
      <title>Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265347#M1181983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at the time you create a task for your source document on the server, you will come to the Reload screen, there is an option for "partial reload".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2011 18:32:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265347#M1181983</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-11-29T18:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265348#M1181984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swuehl,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Excellent, thanks………&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The job is being run, will update after completes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for the pointer, I have not done any server administration yet and this was a great pointer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2011 22:44:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265348#M1181984</guid>
      <dc:creator />
      <dc:date>2011-11-29T22:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265349#M1181985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Any idea why there are extra tables created with -1 appended to them when using Partial Reload and Replace option on a table?&amp;nbsp; &lt;/P&gt;&lt;P&gt;﻿﻿﻿&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2011 23:49:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265349#M1181985</guid>
      <dc:creator />
      <dc:date>2011-11-29T23:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265350#M1181986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See below log entry, two of the tables have -1 attached to the name: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FunctionalUnitApi &amp;lt;&amp;lt; ( 7,817 lines fetched&lt;/P&gt;&lt;P&gt;CodeCoverage-1 &amp;lt;&amp;lt; ( 636 lines fetched&lt;/P&gt;&lt;P&gt;CodeCoverageDetail-1 &amp;lt;&amp;lt; ((meta_reporttype 23,416 lines fetched&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2011 23:50:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265350#M1181986</guid>
      <dc:creator />
      <dc:date>2011-11-29T23:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265351#M1181987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I found this in the documentation and Qualify is used throughout the load and select scripts and the 60+ charts dependent on the data do use the qualified names....&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="font-family: Arial; font-size: 8pt;"&gt;&lt;STRONG style="font-size: 8pt; font-family: Arial;"&gt;&lt;STRONG style="font-size: 8pt; font-family: Arial;"&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt; font-family: Arial;"&gt;&lt;STRONG style="font-size: 8pt; font-family: Arial;"&gt;&lt;SPAN style=": ; font-size: 2; font-family: 'Times New Roman';"&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The &lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt; font-family: Arial;"&gt;&lt;STRONG style="font-size: 8pt; font-family: Arial;"&gt;qualify &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="font-family: Times New Roman; font-size: 10pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Times New Roman; font-size: 10pt;"&gt;statement should not be used in conjunction with partial reload!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: Arial;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: Arial;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What other option exists to keep loading data but for one table have it not reload each time and not delete the existing table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 00:15:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265351#M1181987</guid>
      <dc:creator />
      <dc:date>2011-11-30T00:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265352#M1181988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Miguel, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Turns out since Partial Load can not be used in this case because Qualify is used throughout, that the QVD solution you mentioned above is the perfect solution.&amp;nbsp; There may be some scripting around this but this will work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 02:40:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265352#M1181988</guid>
      <dc:creator />
      <dc:date>2011-11-30T02:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Can you reload from multiple data sources but exclude one and still keep the data for the one you don't reload</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265353#M1181989</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;That may happen usually when the table is labelled like any other previously loaded. Or it may happen because you don't use labels for tables (setting a name before the LOAD statement see my example above) and two tables in the source are named alike.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 18:12:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-data-sources-during-reload-but-retain-data/m-p/265353#M1181989</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-11-30T18:12:50Z</dc:date>
    </item>
  </channel>
</rss>

