<?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 contents in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/191141#M14609</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;proc contents is a hidden call to proc datasets with content statements. If you follow through the documentation of proc contents for DATA= option, you will find that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc contents data=jim._ALL_;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should achieve your desired result. The notice for the MEMTYPE= in the documentation only applies if you want proc contents for library members that are not datasets as those are the default member types output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are looking only for a particular element of information from proc contents though, the SASHELP tables mentionned by Reeza are probably a better alternative if you have many, many datasets in your library.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Feb 2014 20:35:50 GMT</pubDate>
    <dc:creator>Vince28_Statcan</dc:creator>
    <dc:date>2014-02-28T20:35:50Z</dc:date>
    <item>
      <title>proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/191139#M14607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can someone please help on my question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any way we can perform "proc contents" for all SAS data sets into one particular folder where we have all SAS data sets RATHER than doing it individually?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am talking about performing below code for all SAS data sets at same time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc contents data=jim.test;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Feb 2014 20:01:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/191139#M14607</guid>
      <dc:creator>jimksas</dc:creator>
      <dc:date>2014-02-28T20:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/191140#M14608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assign a library to the folder and then use Proc datasets. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should also look into the SASHELP.VTABLE and SASHELP.VCOLUMN Tables.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Feb 2014 20:16:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/191140#M14608</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-02-28T20:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/191141#M14609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;proc contents is a hidden call to proc datasets with content statements. If you follow through the documentation of proc contents for DATA= option, you will find that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc contents data=jim._ALL_;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should achieve your desired result. The notice for the MEMTYPE= in the documentation only applies if you want proc contents for library members that are not datasets as those are the default member types output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are looking only for a particular element of information from proc contents though, the SASHELP tables mentionned by Reeza are probably a better alternative if you have many, many datasets in your library.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Feb 2014 20:35:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/191141#M14609</guid>
      <dc:creator>Vince28_Statcan</dc:creator>
      <dc:date>2014-02-28T20:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/191142#M14610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Reeza. i found it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*i did*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;libname test 'f:\market\dvjkhasfljk\';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc contents data=test. _all_;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*and it (html + sashelp.vtable + sashelp.vcolumn) has all the info. i need*/&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Feb 2014 20:50:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/191142#M14610</guid>
      <dc:creator>jimksas</dc:creator>
      <dc:date>2014-02-28T20:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/191143#M14611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ops thanks 'Vince28' &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Feb 2014 20:53:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/191143#M14611</guid>
      <dc:creator>jimksas</dc:creator>
      <dc:date>2014-02-28T20:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/268124#M18561</link>
      <description>&lt;P&gt;thanks for the post!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I like this as a basic template:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=SASHELP.VCOLUMN NOOBS;
VAR libname memname memtype name type length label format informat;
where label like "myField" AND LIBNAME='MyLibName_or_WORK' AND memname LIKE "%MyDataSetPattern%";
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 May 2016 22:58:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-contents/m-p/268124#M18561</guid>
      <dc:creator>kjohnsonm</dc:creator>
      <dc:date>2016-05-03T22:58:00Z</dc:date>
    </item>
  </channel>
</rss>

