<?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: check if data exists in another table based on condition in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/check-if-data-exists-in-another-table-based-on-condition/m-p/2297468#M70045</link>
    <description>thanks 
&lt;BR /&gt;I actually don't want to delete the rows in any of the database. 
&lt;BR /&gt;I just want a list with those duplicates removed, I need to do additional transformation on the list. 
&lt;BR /&gt;Could you provide me some ideas on that. 
&lt;BR /&gt;thanks again</description>
    <pubDate>Thu, 20 Oct 2011 14:48:29 GMT</pubDate>
    <dc:creator>_AnonymousUser</dc:creator>
    <dc:date>2011-10-20T14:48:29Z</dc:date>
    <item>
      <title>check if data exists in another table based on condition</title>
      <link>https://community.qlik.com/t5/Talend-Studio/check-if-data-exists-in-another-table-based-on-condition/m-p/2297466#M70043</link>
      <description>I am pulling in data from a database table(A) using tMSSqlInput with SELECT internalkey, anotherkey, name; this part works. 
&lt;BR /&gt;However after pulling the data I need to see for each row if the internalkey, anotherkey combination exists in 
&lt;BR /&gt;in another db table(B) 
&lt;BR /&gt;if it exists, I want to remove the row from the data I pulled from (A); not deleting the rows in the actual DB. 
&lt;BR /&gt;I need to do some additional transformation after on that data, but that is out of the scope of this question. 
&lt;BR /&gt;I just started talend, if someone can give me some idea and what components I need to accomplish this. &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt; 
&lt;BR /&gt;thanks</description>
      <pubDate>Sat, 16 Nov 2024 12:36:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/check-if-data-exists-in-another-table-based-on-condition/m-p/2297466#M70043</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2024-11-16T12:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: check if data exists in another table based on condition</title>
      <link>https://community.qlik.com/t5/Talend-Studio/check-if-data-exists-in-another-table-based-on-condition/m-p/2297467#M70044</link>
      <description>Hi
&lt;BR /&gt;Select internalkey, anotherkey, name from table(A) as main flow, select internalkey, anotherkey from table(B), and do inner join on tMap, get the matched rows, that rows will be deleted in table(A), the job looks like:
&lt;BR /&gt;tMssqlInput(table A)--main----tMap---main--tMssqlOutput(table A)(select delete option in the data on table list)
&lt;BR /&gt; |
&lt;BR /&gt; lookup
&lt;BR /&gt; |tMssqlInput(table B)
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Thu, 20 Oct 2011 08:02:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/check-if-data-exists-in-another-table-based-on-condition/m-p/2297467#M70044</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-20T08:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: check if data exists in another table based on condition</title>
      <link>https://community.qlik.com/t5/Talend-Studio/check-if-data-exists-in-another-table-based-on-condition/m-p/2297468#M70045</link>
      <description>thanks 
&lt;BR /&gt;I actually don't want to delete the rows in any of the database. 
&lt;BR /&gt;I just want a list with those duplicates removed, I need to do additional transformation on the list. 
&lt;BR /&gt;Could you provide me some ideas on that. 
&lt;BR /&gt;thanks again</description>
      <pubDate>Thu, 20 Oct 2011 14:48:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/check-if-data-exists-in-another-table-based-on-condition/m-p/2297468#M70045</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2011-10-20T14:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: check if data exists in another table based on condition</title>
      <link>https://community.qlik.com/t5/Talend-Studio/check-if-data-exists-in-another-table-based-on-condition/m-p/2297469#M70046</link>
      <description>I guess the question is when I do a join on the two tables&lt;BR /&gt;how do i do a "EXCEPT" instead of a inner join&lt;BR /&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/ms188055.aspx" rel="nofollow noopener noreferrer"&gt;http://msdn.microsoft.com/en-us/library/ms188055.aspx&lt;/A&gt;&lt;BR /&gt;thanks</description>
      <pubDate>Thu, 20 Oct 2011 15:38:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/check-if-data-exists-in-another-table-based-on-condition/m-p/2297469#M70046</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2011-10-20T15:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: check if data exists in another table based on condition</title>
      <link>https://community.qlik.com/t5/Talend-Studio/check-if-data-exists-in-another-table-based-on-condition/m-p/2297470#M70047</link>
      <description>Hi 
&lt;BR /&gt;If the two tables are in the same database, you can write the query and execute it in a tMssqlInput component instead of a inner join. I am assuming you know how to write a 'except' query. 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9p.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138034i5F552429DA646D6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9p.png" alt="0683p000009MA9p.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 21 Oct 2011 09:37:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/check-if-data-exists-in-another-table-based-on-condition/m-p/2297470#M70047</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-21T09:37:54Z</dc:date>
    </item>
  </channel>
</rss>

