<?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 Data existence in a table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Data-existence-in-a-table/m-p/808506#M318820</link>
    <description>&lt;P&gt;hello everyone,&lt;/P&gt;
&lt;P&gt;i have a column containing ID , and a big table containing ID too.&lt;/P&gt;
&lt;P&gt;How can i check if a list of ID exist or not in the big table, using sas viya.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks&lt;/P&gt;</description>
    <pubDate>Tue, 19 Apr 2022 09:19:17 GMT</pubDate>
    <dc:creator>aloou</dc:creator>
    <dc:date>2022-04-19T09:19:17Z</dc:date>
    <item>
      <title>Data existence in a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-existence-in-a-table/m-p/808506#M318820</link>
      <description>&lt;P&gt;hello everyone,&lt;/P&gt;
&lt;P&gt;i have a column containing ID , and a big table containing ID too.&lt;/P&gt;
&lt;P&gt;How can i check if a list of ID exist or not in the big table, using sas viya.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 09:19:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-existence-in-a-table/m-p/808506#M318820</guid>
      <dc:creator>aloou</dc:creator>
      <dc:date>2022-04-19T09:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Data existence in a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-existence-in-a-table/m-p/808513#M318823</link>
      <description>&lt;P&gt;A SAS data step hash lookup loading the small table into the hash table is one way to go. Just make sure that you execute the process in the place where the big table exists - like if the big table is in CAS then make sure that you also load the small table into CAS prior to the hash lookup.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 10:29:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-existence-in-a-table/m-p/808513#M318823</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2022-04-19T10:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Data existence in a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Data-existence-in-a-table/m-p/808596#M318841</link>
      <description>&lt;P&gt;If your intention is to check the existence of the ID's from small table in the big table you can try the following Proc SQL.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc sql;
Select  id from big_table
where id in (Select id from small_table);
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This may not be the best approach but easy to understand and use.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 15:37:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Data-existence-in-a-table/m-p/808596#M318841</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2022-04-19T15:37:42Z</dc:date>
    </item>
  </channel>
</rss>

