<?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: Comparing tables when doing a LOAD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Comparing-tables-when-doing-a-LOAD/m-p/428836#M159840</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your prompt response and helpful answer &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Nov 2012 15:17:20 GMT</pubDate>
    <dc:creator>richard_chilvers</dc:creator>
    <dc:date>2012-11-13T15:17:20Z</dc:date>
    <item>
      <title>Comparing tables when doing a LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-tables-when-doing-a-LOAD/m-p/428832#M159836</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;I have table1 loaded from a QVD file with FIELD1, FIELD2, FIELD3, FIELD4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a 2nd table with the same fields and I want to concatenate only records where the combination of values in FIELD1, FIELD2 and FIELD3 doesn't already exist. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this is rather like a PARTIAL LOAD&amp;nbsp; (ie. add load) but with multiple EXISTS conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible.&lt;/P&gt;&lt;P&gt;Or is there another way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2012 14:11:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-tables-when-doing-a-LOAD/m-p/428832#M159836</guid>
      <dc:creator>richard_chilvers</dc:creator>
      <dc:date>2012-11-13T14:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing tables when doing a LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-tables-when-doing-a-LOAD/m-p/428833#M159837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;autonumber(FIELD1&amp;amp;FIELD2&amp;amp;FIELD3) as Key,&lt;/P&gt;&lt;P&gt;FIELD1,&lt;/P&gt;&lt;P&gt;FIELD2,&lt;/P&gt;&lt;P&gt;FIELD3,&lt;/P&gt;&lt;P&gt;FIELD4&lt;/P&gt;&lt;P&gt;from ....;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;left join LOAD&lt;/P&gt;&lt;P&gt;autonumber(FIELD1&amp;amp;FIELD2&amp;amp;FIELD3) as Key,&lt;/P&gt;&lt;P&gt;FIELDx,&lt;/P&gt;&lt;P&gt;FIELDy,&lt;/P&gt;&lt;P&gt;FIELDz&lt;/P&gt;&lt;P&gt;from ....;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2012 14:28:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-tables-when-doing-a-LOAD/m-p/428833#M159837</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2012-11-13T14:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing tables when doing a LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-tables-when-doing-a-LOAD/m-p/428834#M159838</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;Write some thing like in your script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt; table1&lt;/SPAN&gt;:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;FIELD1, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;FIELD2, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;FIELD3, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;FIELD4,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;FIELD1&amp;amp; FIELD2&amp;amp;FIELD3&lt;/SPAN&gt; as Key&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;from your source;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;table&lt;/SPAN&gt;2:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;concatenate&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;FIELD1, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;FIELD2,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;FIELD3,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;FIELD1&amp;amp; FIELD2&amp;amp;FIELD3&lt;/SPAN&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt; as Table2Key&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;from your source&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;where not Exists(key,Table2Key);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;HTH&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Anand&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2012 14:34:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-tables-when-doing-a-LOAD/m-p/428834#M159838</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2012-11-13T14:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing tables when doing a LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-tables-when-doing-a-LOAD/m-p/428835#M159839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your prompt response.&lt;/P&gt;&lt;P&gt;Will try this - looks like it will work !&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, 13 Nov 2012 15:16:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-tables-when-doing-a-LOAD/m-p/428835#M159839</guid>
      <dc:creator>richard_chilvers</dc:creator>
      <dc:date>2012-11-13T15:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing tables when doing a LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-tables-when-doing-a-LOAD/m-p/428836#M159840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your prompt response and helpful answer &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2012 15:17:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-tables-when-doing-a-LOAD/m-p/428836#M159840</guid>
      <dc:creator>richard_chilvers</dc:creator>
      <dc:date>2012-11-13T15:17:20Z</dc:date>
    </item>
  </channel>
</rss>

