<?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: how to Merge two tables into new table ? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/how-to-Merge-two-tables-into-new-table/m-p/175815#M45090</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please show your log. The code you showed will not have the result you claimed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Jan 2015 02:53:10 GMT</pubDate>
    <dc:creator>Haikuo</dc:creator>
    <dc:date>2015-01-09T02:53:10Z</dc:date>
    <item>
      <title>how to Merge two tables into new table ?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-Merge-two-tables-into-new-table/m-p/175814#M45089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to combine two tables to one table by using merge..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DAta&amp;nbsp; report;&lt;/P&gt;&lt;P&gt;merge table1 table2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;Table1 has 200000 records&lt;/P&gt;&lt;P&gt;TAble2. Has 5000 records&lt;/P&gt;&lt;P&gt;when I run the merge I get 13k from table 1 and table2 has 4k&lt;/P&gt;&lt;P&gt;somehow it brings in less record to new table".. Thanks for assistance &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 02:47:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-Merge-two-tables-into-new-table/m-p/175814#M45089</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2015-01-09T02:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to Merge two tables into new table ?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-Merge-two-tables-into-new-table/m-p/175815#M45090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please show your log. The code you showed will not have the result you claimed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 02:53:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-Merge-two-tables-into-new-table/m-p/175815#M45090</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2015-01-09T02:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to Merge two tables into new table ?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-Merge-two-tables-into-new-table/m-p/175816#M45091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hai kuo&lt;/P&gt;&lt;P&gt;i just reran the script an it merge the correct amount of 200k and 5 k records.... without any changes. To my script could you provide me an example of how it should look since you said mine looks incorrect ...I'm happy that is merging correctly&amp;nbsp; but don't understand why it didn't first couple times ...thank you again for your assistance &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 03:10:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-Merge-two-tables-into-new-table/m-p/175816#M45091</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2015-01-09T03:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to Merge two tables into new table ?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-Merge-two-tables-into-new-table/m-p/175817#M45092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad it worked out for you as it should. What I meant is that your code will not produce the outcome you claimed (13k and 4k) , I didn't say it can't produce something that 'you wanted'. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 03:38:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-Merge-two-tables-into-new-table/m-p/175817#M45092</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2015-01-09T03:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to Merge two tables into new table ?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/how-to-Merge-two-tables-into-new-table/m-p/175818#M45093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you ran it without any changes I doubt its what you want. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Typically you want a BY statement in a merge, so you can join the two tables on some field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;merge table1 table2;&lt;/P&gt;&lt;P&gt;BY ID;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 03:48:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/how-to-Merge-two-tables-into-new-table/m-p/175818#M45093</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-01-09T03:48:14Z</dc:date>
    </item>
  </channel>
</rss>

