<?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: List all dataset names in a library in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/List-all-dataset-names-in-a-library/m-p/140817#M37634</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note that the value of LIBNAME will always be in uppercase in the dictionary tables.&amp;nbsp; So you would need &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; libname = "&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;SAPENG&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Jun 2014 21:07:11 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2014-06-13T21:07:11Z</dc:date>
    <item>
      <title>List all dataset names in a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/List-all-dataset-names-in-a-library/m-p/140814#M37631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to view a list of all dataset names in a library called SAPEng that begin with /BIC/ (the datasets were created in SAP).&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 17:13:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/List-all-dataset-names-in-a-library/m-p/140814#M37631</guid>
      <dc:creator>gzr2mz39</dc:creator>
      <dc:date>2014-06-12T17:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: List all dataset names in a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/List-all-dataset-names-in-a-library/m-p/140815#M37632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at querying sashelp.vtable or dictionary.table&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;Proc contents&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;Proc datasets&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 17:57:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/List-all-dataset-names-in-a-library/m-p/140815#M37632</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-06-12T17:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: List all dataset names in a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/List-all-dataset-names-in-a-library/m-p/140816#M37633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should be able to use SQL and the sas dictionary tables to get what you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from sashelp.vmember&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname = "&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;SAPEng &lt;/SPAN&gt;" and memname like "BIC%"&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See if that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2014 18:00:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/List-all-dataset-names-in-a-library/m-p/140816#M37633</guid>
      <dc:creator>esjackso</dc:creator>
      <dc:date>2014-06-12T18:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: List all dataset names in a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/List-all-dataset-names-in-a-library/m-p/140817#M37634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note that the value of LIBNAME will always be in uppercase in the dictionary tables.&amp;nbsp; So you would need &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; libname = "&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;SAPENG&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 21:07:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/List-all-dataset-names-in-a-library/m-p/140817#M37634</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2014-06-13T21:07:11Z</dc:date>
    </item>
  </channel>
</rss>

