<?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 replacing in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/replacing/m-p/586741#M167501</link>
    <description>&lt;P&gt;Hello and Happy Friday,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two tables that I want to replace the values of one by another. I need to replace the values of table Psudo_alcs with the values of real_alcs.&lt;/P&gt;</description>
    <pubDate>Fri, 06 Sep 2019 13:06:38 GMT</pubDate>
    <dc:creator>mauri0623</dc:creator>
    <dc:date>2019-09-06T13:06:38Z</dc:date>
    <item>
      <title>replacing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/replacing/m-p/586741#M167501</link>
      <description>&lt;P&gt;Hello and Happy Friday,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two tables that I want to replace the values of one by another. I need to replace the values of table Psudo_alcs with the values of real_alcs.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 13:06:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/replacing/m-p/586741#M167501</guid>
      <dc:creator>mauri0623</dc:creator>
      <dc:date>2019-09-06T13:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: replacing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/replacing/m-p/586743#M167503</link>
      <description>&lt;P&gt;I don't get this. Do you simply want to replace all values in one table with all the values from another table?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then why not simply rename the second table?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 13:08:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/replacing/m-p/586743#M167503</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-09-06T13:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: replacing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/replacing/m-p/586771#M167504</link>
      <description>&lt;P&gt;Yes but how?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 13:53:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/replacing/m-p/586771#M167504</guid>
      <dc:creator>mauri0623</dc:creator>
      <dc:date>2019-09-06T13:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: replacing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/replacing/m-p/586773#M167505</link>
      <description>&lt;P&gt;Do like this. I just create an example data set &lt;STRONG&gt;a&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data a;
    a=1;
run;

proc datasets lib=work nolist;
    change a=b;
run;quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So in your case, it will be something like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc datasets lib=work nolist;
    change real_alcs=Psudo_alcs;
run;quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If your data is not in the work library, then change the lib= part&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 13:59:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/replacing/m-p/586773#M167505</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-09-06T13:59:07Z</dc:date>
    </item>
  </channel>
</rss>

