<?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 Update columns in one table with values from another table - both table have the same structure, in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/565967#M158984</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have what I thought was a very simple and basic task to do.&lt;/P&gt;&lt;P&gt;I have 2 tables, T1 and T2, both of them with exact same table structure.&lt;/P&gt;&lt;P&gt;I'm just trying to update a few columns in T1 with values from T2 based on the common key column - ID.&lt;/P&gt;&lt;P&gt;Here's my code that appears to be working but that has been running for more than 2 hrs and it still hasn't finished.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;BR /&gt;UPDATE WORK.TableToBeUpdated AS T1&lt;BR /&gt;SET&lt;BR /&gt;Column1 = (SELECT Column1 FROM WORK.Newest AS T2 WHERE T1.ID = T2.ID)&lt;BR /&gt;, Column2 = (SELECT Column2 FROM WORK.Newest AS T2 WHERE T1.ID = T2.ID)&lt;BR /&gt;WHERE T1.ID IN (SELECT ID FROM WORK.Newest)&lt;BR /&gt;;&lt;BR /&gt;QUIT;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both of the tables have ~200 columns and ~1mil records.&lt;/P&gt;&lt;P&gt;Since I'm used to working in SQL Server, I know this kind of task would take me about 20 secs to both write the command and run it but here either I'm using the wrong approach to solve this or SAS is executing this kind of code completely different.&lt;/P&gt;&lt;P&gt;Can you offer any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jun 2019 18:46:24 GMT</pubDate>
    <dc:creator>SasDewd</dc:creator>
    <dc:date>2019-06-13T18:46:24Z</dc:date>
    <item>
      <title>Update columns in one table with values from another table - both table have the same structure,</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/565967#M158984</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have what I thought was a very simple and basic task to do.&lt;/P&gt;&lt;P&gt;I have 2 tables, T1 and T2, both of them with exact same table structure.&lt;/P&gt;&lt;P&gt;I'm just trying to update a few columns in T1 with values from T2 based on the common key column - ID.&lt;/P&gt;&lt;P&gt;Here's my code that appears to be working but that has been running for more than 2 hrs and it still hasn't finished.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;BR /&gt;UPDATE WORK.TableToBeUpdated AS T1&lt;BR /&gt;SET&lt;BR /&gt;Column1 = (SELECT Column1 FROM WORK.Newest AS T2 WHERE T1.ID = T2.ID)&lt;BR /&gt;, Column2 = (SELECT Column2 FROM WORK.Newest AS T2 WHERE T1.ID = T2.ID)&lt;BR /&gt;WHERE T1.ID IN (SELECT ID FROM WORK.Newest)&lt;BR /&gt;;&lt;BR /&gt;QUIT;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both of the tables have ~200 columns and ~1mil records.&lt;/P&gt;&lt;P&gt;Since I'm used to working in SQL Server, I know this kind of task would take me about 20 secs to both write the command and run it but here either I'm using the wrong approach to solve this or SAS is executing this kind of code completely different.&lt;/P&gt;&lt;P&gt;Can you offer any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 18:46:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/565967#M158984</guid>
      <dc:creator>SasDewd</dc:creator>
      <dc:date>2019-06-13T18:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: Update columns in one table with values from another table - both table have the same structure,</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/565989#M158996</link>
      <description>Are all the tables in the same place? I suspect a join may be quicker here as well, since it's not quite a straight update (conditional) and you're essentially doing inline sql queries which will run twice on each row so will be slow.</description>
      <pubDate>Thu, 13 Jun 2019 19:34:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/565989#M158996</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-13T19:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: Update columns in one table with values from another table - both table have the same structure,</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/565992#M158998</link>
      <description>&lt;P&gt;Yes, both of the tables are in same library.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 19:38:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/565992#M158998</guid>
      <dc:creator>SasDewd</dc:creator>
      <dc:date>2019-06-13T19:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Update columns in one table with values from another table - both table have the same structure,</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/565993#M158999</link>
      <description>Have you tried a data step update, or modify? Or do you have other columns you don't want to change?</description>
      <pubDate>Thu, 13 Jun 2019 19:40:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/565993#M158999</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-13T19:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Update columns in one table with values from another table - both table have the same structure,</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/566001#M159006</link>
      <description>&lt;P&gt;This is the only thing I tried as I assumed it would be a very simple update statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Most of the columns I do not want to update just a few of them (about 20 out of 200).&lt;/P&gt;&lt;P&gt;So, let's say there are 2 tables:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table1&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; First&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Last&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Salary&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; John&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Hopkins&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$3,000&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jim&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Stevens&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$2,000&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Steve&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Gordon&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$1,000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table2&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; First&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Last&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Salary&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Steve&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Gordon&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$3,000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All I want to do is update Table1 and make sure that Steve's salary is $3,000, which is the value from Table2.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 19:48:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/566001#M159006</guid>
      <dc:creator>SasDewd</dc:creator>
      <dc:date>2019-06-13T19:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Update columns in one table with values from another table - both table have the same structure,</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/566002#M159007</link>
      <description>Then I would probably say do a SQL JOIN instead and use coalesce to pick the data needed.</description>
      <pubDate>Thu, 13 Jun 2019 19:49:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/566002#M159007</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-13T19:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Update columns in one table with values from another table - both table have the same structure,</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/566006#M159009</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; ... I'll look into what you suggested.&lt;/P&gt;&lt;P&gt;My understanding is tha COALESCE returns first nonmissing value but in my case the values may not be missing, they're just not correct and need to be updated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, thanks for your help!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 19:55:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/566006#M159009</guid>
      <dc:creator>SasDewd</dc:creator>
      <dc:date>2019-06-13T19:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Update columns in one table with values from another table - both table have the same structure,</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/566014#M159012</link>
      <description>COALESCE would be used to pick the first value from the updated data set and if it doesn't exist (ID not in the table) to leave it alone, or use present value. You can get the same functionality with a CASE statement but COALESCE() will be easier IMO.</description>
      <pubDate>Thu, 13 Jun 2019 20:03:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/566014#M159012</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-06-13T20:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: Update columns in one table with values from another table - both table have the same structure,</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/566022#M159015</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202675"&gt;@SasDewd&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;This is the only thing I tried as I assumed it would be a very simple update statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Most of the columns I do not want to update just a few of them (about 20 out of 200).&lt;/P&gt;
&lt;P&gt;So, let's say there are 2 tables:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table1&lt;/P&gt;
&lt;P&gt;ID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; First&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Last&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Salary&lt;/P&gt;
&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; John&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Hopkins&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$3,000&lt;/P&gt;
&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jim&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Stevens&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$2,000&lt;/P&gt;
&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Steve&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Gordon&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$1,000&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table2&lt;/P&gt;
&lt;P&gt;ID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; First&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Last&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Salary&lt;/P&gt;
&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Steve&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Gordon&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$3,000&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All I want to do is update Table1 and make sure that Steve's salary is $3,000, which is the value from Table2.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRIKE&gt;Please note that your ID variable has different values for Steve in the two data sets. So your code based on matching ID is not going to work. You would need to join, in this case, on first and last. Or address the id values.&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dyslexic today. Sorry about that. Swore that I saw Id = 1 in the second set. &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://communities.sas.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 21:26:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/566022#M159015</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-06-13T21:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Update columns in one table with values from another table - both table have the same structure,</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/566031#M159020</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;!!&lt;/P&gt;&lt;P&gt;Hmm...both Steves have ID = 3&amp;nbsp; and all the other fields are the same except the Salary field.&lt;/P&gt;&lt;P&gt;Perhaps this was not a great example and I was just trying to explain that all I'm really trying to do is take Steve's Salary value from Table2 and assign it to Steve's Salary value in Table1.&lt;/P&gt;&lt;P&gt;There cannot be another Steve Gordon with different ID or anything like that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this was SQL Server he TSQL code below would have taken care of what I need and it would have finished in seconds:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;UPDATE&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;T1&lt;/P&gt;&lt;P&gt;SET&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;T1.Salary=&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;T2.Salary&lt;/P&gt;&lt;P&gt;FROM&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;Table1 T1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;INNER&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;JOIN&lt;SPAN&gt;&amp;nbsp;Table2 T2&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;ON&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;T1.ID=&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;T2.ID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I'm just shocked that such a simple thing cannot be achieved in SAS without having to write lines of code and/or running it for hours.&lt;/P&gt;&lt;P&gt;Oh well, something new to learn I guess &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 20:27:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-columns-in-one-table-with-values-from-another-table-both/m-p/566031#M159020</guid>
      <dc:creator>SasDewd</dc:creator>
      <dc:date>2019-06-13T20:27:41Z</dc:date>
    </item>
  </channel>
</rss>

