<?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: extract information from a very large table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670629#M201353</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Here are three points that will likely speed up the process:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Set hashexp : 20. This creates 2^20=1048576 binary search trees instead of 2^8=256 (default). This probably speeds up the search.&lt;/LI&gt;
&lt;LI&gt;Define the key portion only. Not the data portion of the hash object. You do not want to retrieve any data anyway.&lt;/LI&gt;
&lt;LI&gt;All you want to do is verify the existence of a given key in the hash object. Not retrieve any data from it. Therefore, use the &lt;A href="https://documentation.sas.com/?docsetId=lecompobjref&amp;amp;docsetTarget=p05xq2t4hac4ivn187tai050d5c2.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;Check() Method&lt;/A&gt; instead of the &lt;A href="https://documentation.sas.com/?docsetId=lecompobjref&amp;amp;docsetTarget=p0v7y0he52atdan1iwtpwryes1dw.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;Find() Method&lt;/A&gt;.&lt;/LI&gt;
&lt;/OL&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;: Good idea to experiment with &lt;FONT face="courier new,courier"&gt;hashexp&lt;/FONT&gt;. Item 3 should definitely be implemented by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/175837"&gt;@Myurathan&lt;/a&gt;. I'm skeptical about item 2, though: I think that would create even more (unneeded) data items, i.e., both C_ID and D_ID, by default. (Or has this default been changed recently?)&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jul 2020 12:59:52 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2020-07-20T12:59:52Z</dc:date>
    <item>
      <title>extract information from a very large table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670590#M201340</link>
      <description>&lt;P&gt;Hi Experts!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have to extract information from a very huge table, and I do not know what is the best way to approach it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Master_table&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;C_ID&lt;/TD&gt;&lt;TD&gt;D_ID&lt;/TD&gt;&lt;TD&gt;Amount&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01/01/2000&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;567&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02/02/2000&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;543&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03/03/2000&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;789&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01/01/2000&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;777&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02/02/2000&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;987&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03/03/2000&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;980&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Master table have information about millions of Ids daily data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My_List (900,000 unique ids)&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;C_ID&lt;/TD&gt;&lt;TD&gt;D_ID&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;I want to extract all the information available from Master table for the ids in the my_list table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data test1;
if 0 then set My_List;
IF _N_ = 1 THEN DO;
	declare Hash H (dataset:'MY_LIST');
	H.definekey('C_ID','D_ID');
	H.DEFINEDATA('C_ID');
	H.DEFINEDONE();
	END;
SET Master_table (KEEP= C_ID D_ID AMOUNT);
IF H.FIND() = 0 THEN OUTPUT;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It takes a very long time to run. Is there any way I can improve the code to run faster?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Myu&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 10:47:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670590#M201340</guid>
      <dc:creator>Myurathan</dc:creator>
      <dc:date>2020-07-20T10:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: extract information from a very large table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670597#M201344</link>
      <description>&lt;P&gt;Here are three points that will likely speed up the process:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Set hashexp : 20. This creates 2^20=1048576 binary search trees instead of 2^8=256 (default). This probably speeds up the search.&lt;/LI&gt;
&lt;LI&gt;&lt;STRIKE&gt;Define the key portion only. Not the data portion of the hash object. You do not want to retrieve any data anyway.&lt;/STRIKE&gt;&lt;/LI&gt;
&lt;LI&gt;All you want to do is verify the existence of a given key in the hash object. Not retrieve any data from it. Therefore, use the &lt;A href="https://documentation.sas.com/?docsetId=lecompobjref&amp;amp;docsetTarget=p05xq2t4hac4ivn187tai050d5c2.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;Check() Method&lt;/A&gt; instead of the &lt;A href="https://documentation.sas.com/?docsetId=lecompobjref&amp;amp;docsetTarget=p0v7y0he52atdan1iwtpwryes1dw.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;Find() Method&lt;/A&gt;.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;EDIT: Implement only point 1 and 3 &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data master_table;
input date : ddmmyy10. C_ID D_ID amount;
format date ddmmyy10.;
datalines;
01/01/2000 1 3 567
02/02/2000 1 3 543
03/03/2000 1 3 789
01/01/2000 2 3 777
02/02/2000 2 3 987
03/03/2000 2 3 980
;

data my_list;
input C_ID D_ID;
datalines;
1 3
9 3
3 8
4 3
8 2
6 3
;

data want;
   if 0 then set my_list;
   if _N_ = 1 then do;
      declare hash h(dataset : "my_list", hashexp : 20);  /* 1 */
      h.definekey (all : "Y");                            /* 2 */
      h.definedone();
   end;

   set master_table(keep=C_ID D_ID amount);
 
   if h.check() = 0;                                      /* 3 */
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 13:18:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670597#M201344</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2020-07-20T13:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: extract information from a very large table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670598#M201345</link>
      <description>&lt;P&gt;Alternatively, here is a temporary array approach. If the largest value of C_ID is less than the first dimension of the array and the largest value of D_ID is less than the second dimension of the array, this should be reasonably fast.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
   array id {9999, 9999} _temporary_;
   
   do until (lr1);
      set my_list end=lr1;
      id[C_ID, D_ID] = 1;
   end;

   do until (lr2);
      set master_table(keep=C_ID D_ID amount) end=lr2;
      if id[C_ID, D_ID] then output;
   end;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Jul 2020 12:05:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670598#M201345</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2020-07-20T12:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: extract information from a very large table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670626#M201350</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/175837"&gt;@Myurathan&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you aware of the library article&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Study-on-the-best-method-to-join-two-tables/ta-p/406434" target="_blank" rel="noopener"&gt;Study on the best method to join two tables&lt;/A&gt;? Depending on your data (and other factors) it's possible that using a hash object is not the most efficient approach for your task. Note that if there are many observations (dates) per ID in the master table, your current code will look up the same key many times. The number of look-ups could be reduced substantially if the master table was sorted or indexed by C_ID D_ID (which would also be a prerequisite for some of the alternative approaches).&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 12:54:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670626#M201350</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2020-07-20T12:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: extract information from a very large table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670629#M201353</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Here are three points that will likely speed up the process:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Set hashexp : 20. This creates 2^20=1048576 binary search trees instead of 2^8=256 (default). This probably speeds up the search.&lt;/LI&gt;
&lt;LI&gt;Define the key portion only. Not the data portion of the hash object. You do not want to retrieve any data anyway.&lt;/LI&gt;
&lt;LI&gt;All you want to do is verify the existence of a given key in the hash object. Not retrieve any data from it. Therefore, use the &lt;A href="https://documentation.sas.com/?docsetId=lecompobjref&amp;amp;docsetTarget=p05xq2t4hac4ivn187tai050d5c2.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;Check() Method&lt;/A&gt; instead of the &lt;A href="https://documentation.sas.com/?docsetId=lecompobjref&amp;amp;docsetTarget=p0v7y0he52atdan1iwtpwryes1dw.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;Find() Method&lt;/A&gt;.&lt;/LI&gt;
&lt;/OL&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;: Good idea to experiment with &lt;FONT face="courier new,courier"&gt;hashexp&lt;/FONT&gt;. Item 3 should definitely be implemented by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/175837"&gt;@Myurathan&lt;/a&gt;. I'm skeptical about item 2, though: I think that would create even more (unneeded) data items, i.e., both C_ID and D_ID, by default. (Or has this default been changed recently?)&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 12:59:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670629#M201353</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2020-07-20T12:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: extract information from a very large table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670632#M201355</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;,&amp;nbsp;you're correct. I forgot that when specifying only the Key portion, all variables are read into the data portion as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good catch! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 13:17:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670632#M201355</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2020-07-20T13:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: extract information from a very large table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670640#M201356</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/32733"&gt;@FreelanceReinh&lt;/a&gt;,&amp;nbsp;you're correct. I forgot that when specifying only the Key portion, all variables are read into the data portion as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good catch! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It should be possible to avoid that by using keep-Option in the declare-statement:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;declare hash h(dataset : "my_list(keep=C_ID D_ID)", hashexp : 20);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Jul 2020 13:34:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670640#M201356</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2020-07-20T13:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: extract information from a very large table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670641#M201357</link>
      <description>&lt;P&gt;What is the difference? My_List contains only C_ID and D_ID in the first place.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 13:37:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670641#M201357</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2020-07-20T13:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: extract information from a very large table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670658#M201362</link>
      <description>&lt;P&gt;With your real data is Master_Table a SAS table or a database table?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is "a very long time" and what is "huge"? - "Huge" in number of rows, variables and size of file in GB.&lt;/P&gt;
&lt;P&gt;If it's a SAS table: Is it compressed or not?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you just run below code does that execute significantly faster than your code with the hash key lookup (once changed using the check() method)?&lt;/P&gt;
&lt;PRE&gt;data _null_;
  set master_table(keep=c_id d_id amount);
run;&lt;/PRE&gt;
&lt;P&gt;Eventually set &lt;EM&gt;options fullstimer;&lt;/EM&gt; and post the generated log messages.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 14:04:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670658#M201362</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-07-20T14:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: extract information from a very large table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670700#M201374</link>
      <description>Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;,&lt;BR /&gt;Let me answer questions:&lt;BR /&gt;1. With your real data is Master_Table a SAS table or a database table?&lt;BR /&gt;It is a SQL Database table.&lt;BR /&gt;&lt;BR /&gt;2. Long time means it is running for around 10 hrs without any success.&lt;BR /&gt;3. Size of the Master data is 1180GB (Considering indexes)&lt;BR /&gt;&lt;BR /&gt;Thank you for your hep.</description>
      <pubDate>Mon, 20 Jul 2020 15:17:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670700#M201374</guid>
      <dc:creator>Myurathan</dc:creator>
      <dc:date>2020-07-20T15:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: extract information from a very large table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670833#M201421</link>
      <description>&lt;P&gt;"&lt;EM&gt;It is a SQL Database table&lt;/EM&gt;"&lt;/P&gt;
&lt;P&gt;The SAS data step you wrote will need to pull all the data from the database into SAS. That's where you spend the time.&lt;/P&gt;
&lt;P&gt;If the small table is in SAS then you will need to upload it into SQL Server (i.e. into a temporary table) and then write a SQL join which can fully execute on the database side to subset the data - and you then only pull the result set back into SAS for further processing.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 22:54:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/extract-information-from-a-very-large-table/m-p/670833#M201421</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-07-20T22:54:59Z</dc:date>
    </item>
  </channel>
</rss>

