<?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: Urgent : Doubt in Load statement in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Urgent-Doubt-in-Load-statement/m-p/512130#M694328</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use INNER JOIN like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * &lt;/P&gt;&lt;P&gt;RESIDENT A;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INNER JOIN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD student_id &lt;/P&gt;&lt;P&gt;RESIDENT B;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Jun 2013 13:08:18 GMT</pubDate>
    <dc:creator>tresB</dc:creator>
    <dc:date>2013-06-26T13:08:18Z</dc:date>
    <item>
      <title>Urgent : Doubt in Load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Urgent-Doubt-in-Load-statement/m-p/512129#M694327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two resident tables sa A and B both having student_id field as common.&lt;/P&gt;&lt;P&gt;I need to devise a load statement to create a table C such as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C:&lt;/P&gt;&lt;P&gt;LOAD * &lt;/P&gt;&lt;P&gt;RESIDENT A&lt;/P&gt;&lt;P&gt;WHERE student_id in&lt;/P&gt;&lt;P&gt;(LOAD student_id &lt;/P&gt;&lt;P&gt;RESIDENT B);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just like we use in select statements like -- &lt;EM&gt;select * from table A where student_id in (select student_id from table B)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that the above code is wrong and ofcourse it is not working.&lt;/P&gt;&lt;P&gt;Please help me to find a solution for my requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishnu S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jun 2013 13:04:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Urgent-Doubt-in-Load-statement/m-p/512129#M694327</guid>
      <dc:creator>vishnus85</dc:creator>
      <dc:date>2013-06-26T13:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent : Doubt in Load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Urgent-Doubt-in-Load-statement/m-p/512130#M694328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use INNER JOIN like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * &lt;/P&gt;&lt;P&gt;RESIDENT A;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INNER JOIN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD student_id &lt;/P&gt;&lt;P&gt;RESIDENT B;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jun 2013 13:08:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Urgent-Doubt-in-Load-statement/m-p/512130#M694328</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-06-26T13:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent : Doubt in Load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Urgent-Doubt-in-Load-statement/m-p/512131#M694329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishnu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd do as follows:&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 _jivemacro_uid_13722520695577573" jivemacro_uid="_13722520695577573"&gt;&lt;P&gt;B:&lt;/P&gt;&lt;P&gt;LOAD student_id&lt;/P&gt;&lt;P&gt;FROM FileB.qvd (qvd); // or whatever the source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM FileA.qvd (qvd)&lt;/P&gt;&lt;P&gt;WHERE Exists(student_id); // will load only records where student_id is in table B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE B;&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>Wed, 26 Jun 2013 13:09:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Urgent-Doubt-in-Load-statement/m-p/512131#M694329</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2013-06-26T13:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Urgent : Doubt in Load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Urgent-Doubt-in-Load-statement/m-p/512132#M694330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just like Miguel said, doing as he mention you get one more advantage... all LOAD statements are optimezed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jun 2013 15:26:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Urgent-Doubt-in-Load-statement/m-p/512132#M694330</guid>
      <dc:creator />
      <dc:date>2013-06-26T15:26:58Z</dc:date>
    </item>
  </channel>
</rss>

