<?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 Loading Issues in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268700#M100868</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Sokkorn,&lt;/P&gt;&lt;P&gt;He is trying to Join Tabales and then load some fields from resuting table in one load only which is not possible. Your scriopt is fine but if you do one load on top of it like &lt;/P&gt;&lt;P&gt;Load Field1,Field2,Field3; It will throw error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;VIjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jan 2012 07:40:56 GMT</pubDate>
    <dc:creator>vijay_iitkgp</dc:creator>
    <dc:date>2012-01-12T07:40:56Z</dc:date>
    <item>
      <title>Loading Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268695#M100863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;LOAD&lt;/SPAN&gt;&amp;nbsp; FIELD1, FIELD2, FIELD3, FIELD4;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;LOAD&lt;/SPAN&gt;&amp;nbsp; FIELD1, FIELD2 &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; TABLE1_2.QVD (QVD);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD 1&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;LEFT JOIN LOAD&lt;/SPAN&gt; FIELD1, FIELD3 &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; TABLE1_3.QVD (QVD);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD 2&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;LEFT JOIN LOAD&lt;/SPAN&gt; FIELD3, FIELD4 &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; TABLE3_4.QVD (QVD);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I doing it wrong? What I'm tryng to do is load all loaded fields from LOAD 1 TO LOAD 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I try to run the above code, the fields from LOAD 2 can no beb found. (FIELD 3 in would result to error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~skip&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 02:41:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268695#M100863</guid>
      <dc:creator />
      <dc:date>2012-01-12T02:41:13Z</dc:date>
    </item>
    <item>
      <title>Loading Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268696#M100864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As you are using LEFT JOIN between LOAD 1 and LOAD 2, if the field names in LOAD 1 and LOAD 2 match, as you suggest in your example, you will only get records from LOAD 2 where FIELD1 matches exactly to FIELD1 in LOAD 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there are any differences, eg. extra spaces, differences in case, slight spelling differences, then the records from LOAD 2 will not make it through.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want the data from LOAD 2 even when it does not match use a JOIN not a LEFT JOIN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 03:44:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268696#M100864</guid>
      <dc:creator>beanmachine</dc:creator>
      <dc:date>2012-01-12T03:44:57Z</dc:date>
    </item>
    <item>
      <title>Loading Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268697#M100865</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;Thanks for you reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It has to be LEFT JOIN since I only need to retain the records from the first table, all other records that that don't matches to the to this table should be discared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currentyl my solution is to just add another load from resident table.&lt;/P&gt;&lt;P&gt;Just asking if this kind of loading is not supported.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~skip&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 03:48:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268697#M100865</guid>
      <dc:creator />
      <dc:date>2012-01-12T03:48:36Z</dc:date>
    </item>
    <item>
      <title>Loading Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268698#M100866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Skip,&lt;/P&gt;&lt;P&gt;By using this code you can not achievethe required output because before loading Load2 it is going to top and trying to find Field3 which is not available in Load 1 and you are getting error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to do your join first and then use resident load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 07:03:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268698#M100866</guid>
      <dc:creator>vijay_iitkgp</dc:creator>
      <dc:date>2012-01-12T07:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268699#M100867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi qlikering,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seem something wrong with your load script. Let try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;[Data1]:LOAD&lt;/SPAN&gt;&amp;nbsp; FIELD1, FIELD2 &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; TABLE1_2.QVD (QVD);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //LOAD 1&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;LEFT JOIN (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;[Data1]&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;) LOAD&lt;/SPAN&gt; FIELD1, FIELD3 &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; TABLE1_3.QVD (QVD);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //LOAD 2&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;LEFT JOIN (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;[Data1]&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;) LOAD&lt;/SPAN&gt; FIELD3, FIELD4 &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; TABLE3_4.QVD (QVD);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //LOAD 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit: You said error on LOAD 2 mean&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;LOAD&lt;/SPAN&gt; FIELD1, FIELD3 &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; TABLE1_3.QVD (QVD); //Error ==&amp;gt; Make sure FIELD3 exist in your TABLE1_3.QVD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn Cheav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 07:36:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268699#M100867</guid>
      <dc:creator>Sokkorn</dc:creator>
      <dc:date>2012-01-12T07:36:25Z</dc:date>
    </item>
    <item>
      <title>Loading Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268700#M100868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Sokkorn,&lt;/P&gt;&lt;P&gt;He is trying to Join Tabales and then load some fields from resuting table in one load only which is not possible. Your scriopt is fine but if you do one load on top of it like &lt;/P&gt;&lt;P&gt;Load Field1,Field2,Field3; It will throw error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;VIjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 07:40:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268700#M100868</guid>
      <dc:creator>vijay_iitkgp</dc:creator>
      <dc:date>2012-01-12T07:40:56Z</dc:date>
    </item>
    <item>
      <title>Loading Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268701#M100869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Sokkom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error is generated by the load on the top since it only load from the succeeding load not including in LEFT JOIN load where my other field is in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~skip&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 07:51:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268701#M100869</guid>
      <dc:creator />
      <dc:date>2012-01-12T07:51:28Z</dc:date>
    </item>
    <item>
      <title>Loading Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268702#M100870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You right. Sure if I put the first statement then will got an error (&lt;SPAN style="color: #0000ff;"&gt;LOAD&lt;/SPAN&gt;&amp;nbsp; FIELD1, FIELD2, FIELD3, FIELD4;). So that I take it out from my script. I think that my script is answer to qlikering issue. Otherwise if he want to follow his script, I think can be done by below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;[Data1]:LOAD&lt;/SPAN&gt;&amp;nbsp; FIELD1, FIELD2 &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; TABLE1_2.QVD (QVD);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //LOAD 1&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;LEFT JOIN (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;[Data1]&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;) LOAD&lt;/SPAN&gt; FIELD1, FIELD3 &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; TABLE1_3.QVD (QVD);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //LOAD 2&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;LEFT JOIN (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;[Data1]&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;) LOAD&lt;/SPAN&gt; FIELD3, FIELD4 &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; TABLE3_4.QVD (QVD);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //LOAD 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;[Data2]:LOAD&lt;/SPAN&gt;&amp;nbsp; FIELD1, FIELD2, FIELD3, FIELD4 &lt;SPAN style="color: #0000ff;"&gt;RESIDENT&lt;/SPAN&gt; [Data1]; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn Cheav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 07:51:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268702#M100870</guid>
      <dc:creator>Sokkorn</dc:creator>
      <dc:date>2012-01-12T07:51:32Z</dc:date>
    </item>
    <item>
      <title>Loading Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268703#M100871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Yup, Resident Load is the only solution I can find as of now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 07:53:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268703#M100871</guid>
      <dc:creator />
      <dc:date>2012-01-12T07:53:06Z</dc:date>
    </item>
    <item>
      <title>Loading Issues</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268704#M100872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi qlikering,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If my script can answer to your requirement, please help to mark it as answer to close your case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn Cheav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 08:06:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Issues/m-p/268704#M100872</guid>
      <dc:creator>Sokkorn</dc:creator>
      <dc:date>2012-01-12T08:06:23Z</dc:date>
    </item>
  </channel>
</rss>

