<?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: How  to load only uncommon records from the data set in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-uncommon-records-from-the-data-set/m-p/1511962#M3468</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Adding to above can try something like mentioned below:&lt;/P&gt;&lt;P&gt;Main1:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ID, Name&lt;BR /&gt;1, A&lt;BR /&gt;2, B&lt;BR /&gt;3, C&lt;BR /&gt;4, D&lt;BR /&gt;5, E&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;join&lt;BR /&gt;Main2:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ID1, Name&lt;BR /&gt;1, A&lt;BR /&gt;2, B&lt;BR /&gt;3, C&lt;BR /&gt;4, D&lt;BR /&gt;5, E&lt;BR /&gt;6, F&lt;BR /&gt;7, G&lt;BR /&gt;8, H&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Main:&lt;BR /&gt;Load *&lt;BR /&gt;Resident Main1&lt;BR /&gt;where IsNull(ID) or IsNull(ID1);&lt;/P&gt;&lt;P&gt;Drop Table Main1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PFA sample app for your reference:&lt;/P&gt;</description>
    <pubDate>Mon, 26 Nov 2018 05:14:41 GMT</pubDate>
    <dc:creator>vardhancse</dc:creator>
    <dc:date>2018-11-26T05:14:41Z</dc:date>
    <item>
      <title>How  to load only uncommon records from the data set</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-uncommon-records-from-the-data-set/m-p/1511931#M3466</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have two tables to load in my application. The requirement is to load only the uncommon records that exist in Table 2 .The records need not to be in my application.&lt;/P&gt;&lt;P&gt;Please find the below script and suggest how can I achieve this result.&lt;/P&gt;&lt;P&gt;a:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ID, Name&lt;BR /&gt;1, A&lt;BR /&gt;2, B&lt;BR /&gt;3, C&lt;BR /&gt;4, D&lt;BR /&gt;5, E&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;B:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ID, Name&lt;BR /&gt;1, A&lt;BR /&gt;2, B&lt;BR /&gt;3, C&lt;BR /&gt;4, D&lt;BR /&gt;5, E&lt;BR /&gt;6, F&lt;BR /&gt;7, G&lt;BR /&gt;8, H&lt;BR /&gt;] ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Output :&amp;nbsp; I need to have only IDs- 6,7,8 in my application rest all the common IDs to be dropped.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ishika&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 02:30:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-uncommon-records-from-the-data-set/m-p/1511931#M3466</guid>
      <dc:creator>ishika00730</dc:creator>
      <dc:date>2018-11-26T02:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: How  to load only uncommon records from the data set</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-uncommon-records-from-the-data-set/m-p/1511940#M3467</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please try below script.&lt;/P&gt;&lt;P&gt;a:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ID, Name&lt;BR /&gt;1, A&lt;BR /&gt;2, B&lt;BR /&gt;3, C&lt;BR /&gt;4, D&lt;BR /&gt;5, E&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;BR /&gt;B:&lt;BR /&gt;LOAD * WHERE NOT EXISTS ( ID,ID);&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ID, Name&lt;BR /&gt;1, A&lt;BR /&gt;2, B&lt;BR /&gt;3, C&lt;BR /&gt;4, D&lt;BR /&gt;5, E&lt;BR /&gt;6, F&lt;BR /&gt;7, G&lt;BR /&gt;8, H&lt;BR /&gt;] ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DROP TABLE a;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;BR,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 03:52:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-uncommon-records-from-the-data-set/m-p/1511940#M3467</guid>
      <dc:creator>saurabhwadhwa</dc:creator>
      <dc:date>2018-11-26T03:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: How  to load only uncommon records from the data set</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-uncommon-records-from-the-data-set/m-p/1511962#M3468</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Adding to above can try something like mentioned below:&lt;/P&gt;&lt;P&gt;Main1:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ID, Name&lt;BR /&gt;1, A&lt;BR /&gt;2, B&lt;BR /&gt;3, C&lt;BR /&gt;4, D&lt;BR /&gt;5, E&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;join&lt;BR /&gt;Main2:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;ID1, Name&lt;BR /&gt;1, A&lt;BR /&gt;2, B&lt;BR /&gt;3, C&lt;BR /&gt;4, D&lt;BR /&gt;5, E&lt;BR /&gt;6, F&lt;BR /&gt;7, G&lt;BR /&gt;8, H&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Main:&lt;BR /&gt;Load *&lt;BR /&gt;Resident Main1&lt;BR /&gt;where IsNull(ID) or IsNull(ID1);&lt;/P&gt;&lt;P&gt;Drop Table Main1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PFA sample app for your reference:&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 05:14:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-uncommon-records-from-the-data-set/m-p/1511962#M3468</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2018-11-26T05:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: How  to load only uncommon records from the data set</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-uncommon-records-from-the-data-set/m-p/1512021#M3469</link>
      <description>Hi,&lt;BR /&gt;I would do it also by using where not exists(). Just for being efficient - if both fields have the same name you can write it only once. So the condition where not exists(ID) works the same ;).&lt;BR /&gt;BR,&lt;BR /&gt;Maria</description>
      <pubDate>Mon, 26 Nov 2018 08:10:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-only-uncommon-records-from-the-data-set/m-p/1512021#M3469</guid>
      <dc:creator>JaMajka1</dc:creator>
      <dc:date>2018-11-26T08:10:58Z</dc:date>
    </item>
  </channel>
</rss>

