<?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: Problem with Partial Load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357926#M132827</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems the problem was not so much with the Partial Load but with how the tables were linked, an underlying problem I did not notice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used a KEEP command rather than a JOIN which seems to keep the tables seperate so is better suited to my purposes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13402824618716555" jivemacro_uid="_13402824618716555"&gt;&lt;P&gt;Server: Left Keep (data) LOAD Server,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Service, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ARN, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Class, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Role, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Data Collector], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Log File Location]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[\\hbeu.adroot.hsbc\dfsroot\GB002\CBI_SUPP_ENV\Performance Docs\GFA Utilisation Reporting Summary.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Servers$);&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also prevented the NULL data from being loaded using the WHERE command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13402824618691669" jivemacro_uid="_13402824618691669"&gt;&lt;P&gt;Where Len(Server)&amp;gt;0;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still unsure as to whether I will use Partial Load as a full load of nearly two months of data just took 3 1/2 minutes, and older data I think I will average up for the Hour rather than the Five Minute Interval, but the help is much appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;n.b. Now I've been able to test and apply your suggestions to resolve the issue I've marked it as Correct. Cheers! :]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jun 2012 12:40:34 GMT</pubDate>
    <dc:creator>shane_spencer</dc:creator>
    <dc:date>2012-06-21T12:40:34Z</dc:date>
    <item>
      <title>Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357917#M132818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm set up a Partial reload to add new data in to Memory each day, however the new data is not linked to a seperate table like the existing data is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13400311385589567" jivemacro_uid="_13400311385589567"&gt;&lt;P&gt;for each File in FileList('*PerfMon_$(yestermonth).qvd')&lt;/P&gt;&lt;P&gt;//Only selects QVD Files to load data from if they're from yesterdays month&lt;/P&gt;&lt;P&gt;data: ADD Only LOAD Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Server, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Hour, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Minute,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Main_metric, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sub_Metric, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; value&lt;/P&gt;&lt;P&gt;FROM '$(File)' (qvd)&lt;/P&gt;&lt;P&gt;WHERE Date='$(yesterdate)';&lt;/P&gt;&lt;P&gt;//Loads date only where the Date is yesterdays&lt;/P&gt;&lt;P&gt;next File&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...this should be linked by Server to another table but the Partially Loaded data is not. Can any help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2012 14:54:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357917#M132818</guid>
      <dc:creator>shane_spencer</dc:creator>
      <dc:date>2012-06-18T14:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357918#M132819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shane,&lt;/P&gt;&lt;P&gt;did you try to execute that loop with normal reload?&lt;/P&gt;&lt;P&gt;It seems that loop is empty because qvds names are not created as expected. Try with this in the first line: &lt;STRONG&gt;&lt;CODE class="jive-code jive-sql"&gt;&lt;SPAN class="jive-sql-keyword"&gt;for&lt;/SPAN&gt; &lt;SPAN class="jive-sql-keyword"&gt;each&lt;/SPAN&gt; File &lt;SPAN class="jive-sql-keyword"&gt;in&lt;/SPAN&gt; FileList(&lt;/CODE&gt;'*PerfMon_'&amp;amp;'$(yestermonth)'&amp;amp;'.qvd')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2012 07:51:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357918#M132819</guid>
      <dc:creator />
      <dc:date>2012-06-19T07:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357919#M132820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The QVD's I'm loading do exist and are created by seperate scripts. The Full and Partial Load both find the QVD's and upload the data, however the Partial Load does not link the new data to another table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the AOB tab there's a Join to a spreadsheet that contains more details about the Server(s), but the new data on Partial Reload does not get Joined to this table for some reason.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2012 08:43:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357919#M132820</guid>
      <dc:creator>shane_spencer</dc:creator>
      <dc:date>2012-06-19T08:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357920#M132821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest to trace partial reload activities, to be sure that partial reload was called and what file names were read during execution; in the main tab you can replace second loop with this one and check log files after reload:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if IsPartialReload() then&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TRACE "Partial reload called...";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;for each File in FileList('*PerfMon_$(yestermonth).qvd')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TRACE "File name read: " &amp;amp; $(File) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;//Only selects QVD Files to load data from if they're from yesterdays month&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data: ADD Only LOAD Date, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Server, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Hour, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Minute,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Main_metric, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sub_Metric, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; value&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM '$(File)' (qvd)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE Date='$(yesterdate)';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;//Loads date only where the Date is yesterdays&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;next File&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;end if&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2012 13:41:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357920#M132821</guid>
      <dc:creator />
      <dc:date>2012-06-19T13:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357921#M132822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shane, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was seeing your script and data stored. If you do a simple table with all the fields in "data" table, you can see that the new values has the "Server" field empty. And this is the reason of they can't be linked with Join. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test a simple load that reads one of these QVD (yesterday's ones), and try to find with table explorer why this field is empty. Or add this sentence at start of script and reload it, and send it again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test:&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;From PerfMon_201205.qvd;&amp;nbsp;&amp;nbsp; &amp;lt;- or one exact filename.&lt;/P&gt;&lt;P&gt;exit script;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2012 14:45:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357921#M132822</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-06-19T14:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357922#M132823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried both those suggestions and I can see that the new data is loading, it's simply not joining to the other tables. I'm not sure what you mean about the Server field being empty Sebastian as it does contain the servername on both my load and partial load data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: Iit turns out the Partial Load is not working as I expected, instead it's loading all data instead of just the date specified by the WHERE command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Given that the full LOAD of 1 1/2 months of data is only taking 4 minutes on my server (much less than I expected from testing on my laptop) I think I'm going to abandon the Partial Load idea altogether.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2012 08:01:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357922#M132823</guid>
      <dc:creator>shane_spencer</dc:creator>
      <dc:date>2012-06-20T08:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357923#M132824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Shane, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a Look at "Sheet2".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There, in your table, I added the fields that you Join in AOB. The "Server" Field, is the common key that you need to make correspondence between both tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The files with empty server field (they exists!! as you can see) don't have the look of be the joined in AOB, because they didn't have information in ARN, Class, Role or Service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you see, there are two servers, and every data you join in AOB, multiplies by these two servers and, of course, one more time, by empty server, the content of Server field in the partial load (or from excel readed in AOB) This is why the reload is taking more time that it must.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This happens when Join is "mixing" instead of "joining". I recomend you analize your sources. Reload with only the two tables that you will join in separate instances of QV, and then compare if you have the same values in "Server" field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2012 13:52:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357923#M132824</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-06-20T13:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357924#M132825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, I understand now. It seems there is an underlying problem I did not even realise was there. I must admit I know very little about joining tables, in fact his part of the work was done by a colleage then handed over to me so I guess I better start from scratch on this. Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2012 14:51:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357924#M132825</guid>
      <dc:creator>shane_spencer</dc:creator>
      <dc:date>2012-06-20T14:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357925#M132826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don´t exaggerate!!! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have post in other of your question that what not resolved... I see you didn't mark as "Correct Answer" any post!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure your resolved posts are maked like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2012 14:57:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357925#M132826</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-06-20T14:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357926#M132827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems the problem was not so much with the Partial Load but with how the tables were linked, an underlying problem I did not notice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used a KEEP command rather than a JOIN which seems to keep the tables seperate so is better suited to my purposes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13402824618716555" jivemacro_uid="_13402824618716555"&gt;&lt;P&gt;Server: Left Keep (data) LOAD Server,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Service, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ARN, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Class, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Role, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Data Collector], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Log File Location]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[\\hbeu.adroot.hsbc\dfsroot\GB002\CBI_SUPP_ENV\Performance Docs\GFA Utilisation Reporting Summary.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Servers$);&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also prevented the NULL data from being loaded using the WHERE command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13402824618691669" jivemacro_uid="_13402824618691669"&gt;&lt;P&gt;Where Len(Server)&amp;gt;0;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still unsure as to whether I will use Partial Load as a full load of nearly two months of data just took 3 1/2 minutes, and older data I think I will average up for the Hour rather than the Five Minute Interval, but the help is much appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;n.b. Now I've been able to test and apply your suggestions to resolve the issue I've marked it as Correct. Cheers! :]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 12:40:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357926#M132827</guid>
      <dc:creator>shane_spencer</dc:creator>
      <dc:date>2012-06-21T12:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357927#M132828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shane, I saw the app you sent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result of using Keep is showing that there aren't matching values between data and Server tables. Keep will only "keeps" the coincidences between both tables in the common field, and if you haven't any table (like your last app sended), is the reason that the field "Server" (common in both tables) hasn't any common value in both tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the "Server" column in GFA Utilisation Reporting Summary.xls and compare it with the values in your partial load. Is very extrange that these values in QV are empty.... Tell me, what kind of values do you have in this excel file? And what kind in *PerfMon*,qvd?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 13:53:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357927#M132828</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-06-21T13:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357928#M132829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The excel files has details about the server, Role, Application etc. I only want the data from that file if the Server exists in the "data" table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HK000TKO4050_20120602.csv&lt;/P&gt;&lt;P&gt;is an example of the raw data I'm collecting&lt;/P&gt;&lt;P&gt;(n.b. I've got rid of the "&lt;EM&gt;Generate a report detailing the...&lt;/EM&gt;" comment from future logs)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GSRS_Perfmon_processing.qvw&lt;/P&gt;&lt;P&gt;is the script I'm using for processing the hundreds of CSV files we have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Part_processed_GSRS_201206.qvd&lt;/P&gt;&lt;P&gt;Is all these CSV's just loaded in to a single QVD for the month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GSRS_Perfmon_201206.qvd&lt;/P&gt;&lt;P&gt;Is the processed "data" that gets loaded in to my Report/App (attached previously). As you can see there's some junk in there as the "date" somehow becomes a submetric which I think is where the blanks crop up in the Server column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GFA Utilisation Reporting Summary.xls&lt;/P&gt;&lt;P&gt;Is the spreadsheet that contains further data about the servers that I link in my Report/App(attached previously).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...I can see the method I'm using isn't perfect but it's about the best I can do. &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 14:12:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357928#M132829</guid>
      <dc:creator>shane_spencer</dc:creator>
      <dc:date>2012-06-21T14:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357929#M132830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, the Submetric "date" is a problem. You can exclude these registers by Where sub_Metric&amp;lt;&amp;gt;'date'; at the load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, like this way, you will get the field "value" with the right format (now, is date format, because of this entry in sub_Metric)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 18:15:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357929#M132830</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-06-21T18:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357930#M132831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx! I had actually used something similar:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13403580459092754" jivemacro_uid="_13403580459092754"&gt;&lt;P&gt;Where Len(Server)&amp;gt;0;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as I seem to have got some other junk data in some of my source files. But if I can get that cleaned up I can see that removing the 'data' from 'submetric' earlier on in the Processing would be a good idea. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2012 09:43:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357930#M132831</guid>
      <dc:creator>shane_spencer</dc:creator>
      <dc:date>2012-06-22T09:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Partial Load</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357931#M132832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think your idea is better!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2012 13:25:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Partial-Load/m-p/357931#M132832</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-06-22T13:25:26Z</dc:date>
    </item>
  </channel>
</rss>

