<?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: nolist in PROC DATASETS? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/nolist-in-PROC-DATASETS/m-p/265469#M52207</link>
    <description>&lt;P&gt;Definitely a RTM question...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;LIBRARY=libref
names the library that the procedure processes. This library is the procedure input/output library.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOLIST
suppresses the printing of the directory of the SAS files in the SAS log.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000247753.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000247753.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There's a good paper on proc datasets via Mike Raithel&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sasglobalforum2016.lanyonevents.com/connect/sessionDetail.ww?SESSION_ID=3440" target="_blank"&gt;https://sasglobalforum2016.lanyonevents.com/connect/sessionDetail.ww?SESSION_ID=3440&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See Presentation download on right hand side or search at lexjansen.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Apr 2016 16:45:55 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-04-21T16:45:55Z</dc:date>
    <item>
      <title>nolist in PROC DATASETS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/nolist-in-PROC-DATASETS/m-p/265446#M52200</link>
      <description>&lt;P&gt;Hi, all:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following codes, what is used for nolist?&amp;nbsp; Does this PROC DATASETS assign lib to work library?&amp;nbsp; Does this also delete dupicates?&amp;nbsp; Please help.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Y&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;datasets&lt;/STRONG&gt; lib=work nolist; delete trash dups; &lt;STRONG&gt;quit&lt;/STRONG&gt;; &lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 15:15:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/nolist-in-PROC-DATASETS/m-p/265446#M52200</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2016-04-21T15:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: nolist in PROC DATASETS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/nolist-in-PROC-DATASETS/m-p/265452#M52201</link>
      <description>&lt;P&gt;You would be best off reading the manual, it has a very descriptive passage on proc datasets:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473443.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002473443.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for your code, lib parameter sets the working library for the datasets operation, nolist supresses output, delete command removes datasets named trash and dups which reside in the libarary work.&lt;/P&gt;
&lt;PRE&gt;proc datasets lib=work nolist; 
  delete trash dups; 
quit; &lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 15:36:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/nolist-in-PROC-DATASETS/m-p/265452#M52201</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-04-21T15:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: nolist in PROC DATASETS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/nolist-in-PROC-DATASETS/m-p/265469#M52207</link>
      <description>&lt;P&gt;Definitely a RTM question...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;LIBRARY=libref
names the library that the procedure processes. This library is the procedure input/output library.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOLIST
suppresses the printing of the directory of the SAS files in the SAS log.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000247753.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000247753.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There's a good paper on proc datasets via Mike Raithel&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sasglobalforum2016.lanyonevents.com/connect/sessionDetail.ww?SESSION_ID=3440" target="_blank"&gt;https://sasglobalforum2016.lanyonevents.com/connect/sessionDetail.ww?SESSION_ID=3440&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See Presentation download on right hand side or search at lexjansen.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 16:45:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/nolist-in-PROC-DATASETS/m-p/265469#M52207</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-21T16:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: nolist in PROC DATASETS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/nolist-in-PROC-DATASETS/m-p/265472#M52208</link>
      <description>&lt;P&gt;The PROC DATASETS statement lists the SAS files in the procedure input library unless the NOLIST option is specified. The NOLIST option prevents the creation of the procedure results that go to the log.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does it mean no result will be shown in the log window? Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 16:56:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/nolist-in-PROC-DATASETS/m-p/265472#M52208</guid>
      <dc:creator>ybz12003</dc:creator>
      <dc:date>2016-04-21T16:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: nolist in PROC DATASETS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/nolist-in-PROC-DATASETS/m-p/265475#M52210</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/67134"&gt;@ybz12003&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;The PROC DATASETS statement lists the SAS files in the procedure input library unless the NOLIST option is specified. &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;The NOLIST option prevents the creation of the procedure results that go to the log.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does it mean no result will be shown in the log window? Thanks.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's exactly what it says.&amp;nbsp;No results go to the &lt;U&gt;&lt;STRONG&gt;log&lt;/STRONG&gt;&lt;/U&gt;. You're better off testing these things, rather than asking them as questions.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 17:14:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/nolist-in-PROC-DATASETS/m-p/265475#M52210</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-21T17:14:21Z</dc:date>
    </item>
  </channel>
</rss>

