<?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 Load Resident with Join exclusion in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/146982#M716885</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Micheal,&lt;/P&gt;&lt;P&gt;thank you for that. Sometimes one have to think around a corner.&lt;/P&gt;&lt;P&gt;Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Jun 2009 05:13:12 GMT</pubDate>
    <dc:creator>rbecher</dc:creator>
    <dc:date>2009-06-17T05:13:12Z</dc:date>
    <item>
      <title>Load Resident with Join exclusion</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/146979#M716882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I'm a new QlikView user &amp;amp; would like to perform a LOAD RESIDENT using another table to exclude values in my load: Table tempPOS has been created, joining 2 different data sources into 1 with a POSID string value as the primary key. From tempPOS, I created a POSException table to write rows that had invalid value combinations POSException also contains a POSID column. Now I would like to create a POSTransaction table using a LOAD [column list] RESIDENT tempPOS where POSID is not in POSException. In other words, I'd like to exclude exception transactions that were written to the POSException table. Can you help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 02:16:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/146979#M716882</guid>
      <dc:creator />
      <dc:date>2009-06-17T02:16:35Z</dc:date>
    </item>
    <item>
      <title>Load Resident with Join exclusion</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/146980#M716883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this.&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;POSException:&lt;BR /&gt;LOAD DISTINCT&lt;BR /&gt; POSID,&lt;BR /&gt; POSID as EXCLUDE&lt;BR /&gt; ...&lt;BR /&gt;RESIDENT ...&lt;BR /&gt;...&lt;BR /&gt;POSTransaction:&lt;BR /&gt;LOAD&lt;BR /&gt; POSID,&lt;BR /&gt; ...&lt;BR /&gt;RESIDENT tempPOS&lt;BR /&gt;WHERE not exists(EXCLUDE, POSID);&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 02:34:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/146980#M716883</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-17T02:34:42Z</dc:date>
    </item>
    <item>
      <title>Load Resident with Join exclusion</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/146981#M716884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Michael! It worked like a charm &lt;IMG alt="Big Smile" src="http://community.qlik.com/emoticons/emotion-2.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 04:57:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/146981#M716884</guid>
      <dc:creator />
      <dc:date>2009-06-17T04:57:31Z</dc:date>
    </item>
    <item>
      <title>Load Resident with Join exclusion</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/146982#M716885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Micheal,&lt;/P&gt;&lt;P&gt;thank you for that. Sometimes one have to think around a corner.&lt;/P&gt;&lt;P&gt;Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 05:13:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/146982#M716885</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2009-06-17T05:13:12Z</dc:date>
    </item>
    <item>
      <title>Load Resident with Join exclusion</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/146983#M716886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For large data sets, I suspect it would be more efficient for both memory and CPU to do something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;POSTransaction:&lt;BR /&gt;LOAD &amp;lt;fields&amp;gt;&lt;BR /&gt;FROM &amp;lt;first data source&amp;gt;&lt;BR /&gt;;&lt;BR /&gt;LOAD &amp;lt;fields&amp;gt;&lt;BR /&gt;FROM &amp;lt;second data source&amp;gt;&lt;BR /&gt;;&lt;BR /&gt;INNER JOIN&lt;BR /&gt;LOAD POSID&lt;BR /&gt;RESIDENT POSTransaction&lt;BR /&gt;WHERE NOT (&amp;lt;condition you were using for POSexception&amp;gt;)&lt;BR /&gt;;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 06:18:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/146983#M716886</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-06-17T06:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: Load Resident with Join exclusion</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/1580291#M716887</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6077"&gt;@johnw&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I would like to know if your solution can be used also in the case where the data source is an ODBC connection.&lt;/P&gt;&lt;P&gt;Because, I try it and I have an error message.&lt;/P&gt;&lt;P&gt;Thank you in advance for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2019 09:29:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Resident-with-Join-exclusion/m-p/1580291#M716887</guid>
      <dc:creator>Black_Hole</dc:creator>
      <dc:date>2019-05-15T09:29:53Z</dc:date>
    </item>
  </channel>
</rss>

