<?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: PROC DATASETS &amp;quot;WARNING: No matching members in directory.&amp;quot; in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871245#M344137</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/350312"&gt;@SASuserlot&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This should do it&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
	set sashelp.vtable(where=(libname='WORK' and MEMTYPE='DATA')) nobs=obs;
	if (obs &amp;gt; 0) then
	  rc = dosubl('proc datasets lib=work memtype=data kill NOLIST NOWARN;run;quit;');
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 21 Apr 2023 19:18:36 GMT</pubDate>
    <dc:creator>AhmedAl_Attar</dc:creator>
    <dc:date>2023-04-21T19:18:36Z</dc:date>
    <item>
      <title>PROC DATASETS "WARNING: No matching members in directory."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871181#M344115</link>
      <description>&lt;P&gt;I am cleaning the 'work' library before the start of the program by using the following code. However, I am getting the&amp;nbsp; warning message in the log '&lt;STRONG&gt;&lt;FONT color="#008000"&gt;WARNING: No matching members in the directory.&lt;/FONT&gt;&lt;/STRONG&gt;'&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Can I avoid this or any alternatives where I can delete the existing datasets in the 'work' library before the start of the program? I thought of using it at the end ( but this will not help when the datasets are already there, and it may overwrite my datasets.)&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;dm 'log;clear;output;clear;odsresults ;clear';
proc datasets lib=work memtype=data kill;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Apr 2023 15:54:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871181#M344115</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2023-04-21T15:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: PROC DATASETS "WARNING: No matching members in directory."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871184#M344117</link>
      <description>proc datasets lib=work memtype=data kill NOWARN;&lt;BR /&gt;quit;</description>
      <pubDate>Fri, 21 Apr 2023 16:02:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871184#M344117</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2023-04-21T16:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: PROC DATASETS "WARNING: No matching members in directory."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871231#M344133</link>
      <description>&lt;P&gt;No luck &lt;span class="lia-unicode-emoji" title=":sad_but_relieved_face:"&gt;😥&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASuserlot_0-1682101714739.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/83026i4A9BE2A090CCE1D9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SASuserlot_0-1682101714739.png" alt="SASuserlot_0-1682101714739.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 18:28:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871231#M344133</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2023-04-21T18:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: PROC DATASETS "WARNING: No matching members in directory."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871245#M344137</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/350312"&gt;@SASuserlot&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This should do it&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
	set sashelp.vtable(where=(libname='WORK' and MEMTYPE='DATA')) nobs=obs;
	if (obs &amp;gt; 0) then
	  rc = dosubl('proc datasets lib=work memtype=data kill NOLIST NOWARN;run;quit;');
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Apr 2023 19:18:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871245#M344137</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2023-04-21T19:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: PROC DATASETS "WARNING: No matching members in directory."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871247#M344139</link>
      <description>This data step would only run the Proc Datasets step if there were data set(s) in the WORK library.&lt;BR /&gt;You can test it by adding a dummy data before the data _null_ step</description>
      <pubDate>Fri, 21 Apr 2023 19:23:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871247#M344139</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2023-04-21T19:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: PROC DATASETS "WARNING: No matching members in directory."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871248#M344140</link>
      <description>&lt;P&gt;&lt;EM&gt;Thank you. It is working now.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 19:25:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871248#M344140</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2023-04-21T19:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: PROC DATASETS "WARNING: No matching members in directory."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871311#M344169</link>
      <description>&lt;P&gt;Try option NODSNFERR .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nodsnferr;
proc datasets lib=work memtype=data kill nolist nodetails;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 22 Apr 2023 11:46:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/871311#M344169</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-04-22T11:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: PROC DATASETS "WARNING: No matching members in directory."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/872346#M344644</link>
      <description>&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2023 19:10:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/872346#M344644</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2023-04-26T19:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: PROC DATASETS "WARNING: No matching members in directory."</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/872351#M344649</link>
      <description>&lt;P&gt;Use NOLIST option not the NOWARN option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data x; run;
proc datasets lib=work memtype=data nolist kill;
quit;
proc datasets lib=work memtype=data nolist kill;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;1102  data x; run;

NOTE: The data set WORK.X has 1 observations and 0 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds


1103  proc datasets lib=work memtype=data nolist kill;
NOTE: Deleting WORK.X (memtype=DATA).
1104  quit;

NOTE: PROCEDURE DATASETS used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds


1105  proc datasets lib=work memtype=data nolist kill;
1106  quit;

NOTE: PROCEDURE DATASETS used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Apr 2023 19:20:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-DATASETS-quot-WARNING-No-matching-members-in-directory-quot/m-p/872351#M344649</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-04-26T19:20:18Z</dc:date>
    </item>
  </channel>
</rss>

