<?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: merge  data sets with zero rows in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/merge-data-sets-with-zero-rows/m-p/685161#M207761</link>
    <description>&lt;P&gt;I have no SAS at home but it happened at my work.&lt;/P&gt;
&lt;P&gt;This is theoretical question.&lt;/P&gt;
&lt;P&gt;In normal merge with empty data sets should I receive an error?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 19 Sep 2020 09:09:22 GMT</pubDate>
    <dc:creator>Ronein</dc:creator>
    <dc:date>2020-09-19T09:09:22Z</dc:date>
    <item>
      <title>merge  data sets with zero rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/merge-data-sets-with-zero-rows/m-p/685159#M207759</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I merge multiple data sets .&lt;/P&gt;
&lt;P&gt;At least one of the data sets has zero rows.&lt;/P&gt;
&lt;P&gt;Why will I get error message during this merge?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Sep 2020 08:57:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/merge-data-sets-with-zero-rows/m-p/685159#M207759</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2020-09-19T08:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: merge  data sets with zero rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/merge-data-sets-with-zero-rows/m-p/685160#M207760</link>
      <description>&lt;P&gt;Have you run the code?&lt;/P&gt;
&lt;P&gt;Please post your full log using the &amp;lt;/&amp;gt; icon.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Sep 2020 09:02:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/merge-data-sets-with-zero-rows/m-p/685160#M207760</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-09-19T09:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: merge  data sets with zero rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/merge-data-sets-with-zero-rows/m-p/685161#M207761</link>
      <description>&lt;P&gt;I have no SAS at home but it happened at my work.&lt;/P&gt;
&lt;P&gt;This is theoretical question.&lt;/P&gt;
&lt;P&gt;In normal merge with empty data sets should I receive an error?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Sep 2020 09:09:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/merge-data-sets-with-zero-rows/m-p/685161#M207761</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2020-09-19T09:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: merge  data sets with zero rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/merge-data-sets-with-zero-rows/m-p/685165#M207764</link>
      <description>&lt;P&gt;The direct answer is NO - as you can see in the attached log:&lt;/P&gt;
&lt;PRE&gt;73         proc sort data=sashelp.class out=class; by name; run;
 
 NOTE: There were 19 observations read from the data set SASHELP.CLASS.
 NOTE: The data set WORK.CLASS has 19 observations and 5 variables.
 NOTE: PROCEDURE SORT used (Total process time):
       real time           0.02 seconds
       cpu time            0.03 seconds
       
 
 74         data class_0; set class; delete; run;
 
 NOTE: There were 19 observations read from the data set WORK.CLASS.
 NOTE: The data set WORK.CLASS_0 has 0 observations and 5 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.02 seconds
       cpu time            0.01 seconds
       
 
 75         
 76         data check;
 77          merge class class_0;
 78           by name;
 79         run;
 
 NOTE: There were 19 observations read from the data set WORK.CLASS.
 NOTE: There were 0 observations read from the data set WORK.CLASS_0.
 NOTE: The data set WORK.CHECK has 19 observations and 5 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.01 seconds
       cpu time            0.02 seconds&lt;/PRE&gt;</description>
      <pubDate>Sat, 19 Sep 2020 10:14:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/merge-data-sets-with-zero-rows/m-p/685165#M207764</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2020-09-19T10:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: merge  data sets with zero rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/merge-data-sets-with-zero-rows/m-p/685208#M207785</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I merge multiple data sets .&lt;/P&gt;
&lt;P&gt;At least one of the data sets has zero rows.&lt;/P&gt;
&lt;P&gt;Why will I get error message during this merge?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;For the same reasons you would with any other merge such common named variables of different types in the different data sets or the data set does not exist (which is different than zero rows).&lt;/P&gt;</description>
      <pubDate>Sat, 19 Sep 2020 17:47:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/merge-data-sets-with-zero-rows/m-p/685208#M207785</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-09-19T17:47:15Z</dc:date>
    </item>
  </channel>
</rss>

