<?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: Number of components in a library in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75290#M21826</link>
    <description>Hi:&lt;BR /&gt;
  There have been a LOT of previous forum postings on the use of DICTIONARY.TABLES or the "dictionary" information that is maintained by SAS. Another "view" of the dictionary files are the SASHELP.Vxxx files -- SASHELP.VCOLUMNS, SASHELP.VTABLES, etc.&lt;BR /&gt;
  There are also a lot of user group papers on these topics with very good examples about how to use the meta-information in these files to help you manage your libraries and write data-driven programs.&lt;BR /&gt;
  I recommend that you search the forum postings on the terms &lt;BR /&gt;
dictionary.tables or sashelp tables &lt;BR /&gt;
 &lt;BR /&gt;
and you should find some useful hits.&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
    <pubDate>Wed, 14 Apr 2010 16:04:32 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2010-04-14T16:04:32Z</dc:date>
    <item>
      <title>Number of components in a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75289#M21825</link>
      <description>Hi ,&lt;BR /&gt;
&lt;BR /&gt;
I have a library that has, say for example 'n' number of sas datasets.Is there  any way I can get the exact count of the sas data sets in the library.&lt;BR /&gt;
&lt;BR /&gt;
Please help.&lt;BR /&gt;
&lt;BR /&gt;
Ren</description>
      <pubDate>Wed, 14 Apr 2010 15:51:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75289#M21825</guid>
      <dc:creator>ren2010</dc:creator>
      <dc:date>2010-04-14T15:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Number of components in a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75290#M21826</link>
      <description>Hi:&lt;BR /&gt;
  There have been a LOT of previous forum postings on the use of DICTIONARY.TABLES or the "dictionary" information that is maintained by SAS. Another "view" of the dictionary files are the SASHELP.Vxxx files -- SASHELP.VCOLUMNS, SASHELP.VTABLES, etc.&lt;BR /&gt;
  There are also a lot of user group papers on these topics with very good examples about how to use the meta-information in these files to help you manage your libraries and write data-driven programs.&lt;BR /&gt;
  I recommend that you search the forum postings on the terms &lt;BR /&gt;
dictionary.tables or sashelp tables &lt;BR /&gt;
 &lt;BR /&gt;
and you should find some useful hits.&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 14 Apr 2010 16:04:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75290#M21826</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-04-14T16:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Number of components in a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75291#M21827</link>
      <description>I tried the following but NO ROWS SELECTED&lt;BR /&gt;
&lt;BR /&gt;
proc sql;&lt;BR /&gt;
    &lt;BR /&gt;
   select *&lt;BR /&gt;
      from dictionary.tables&lt;BR /&gt;
      where upcase(libname)='aa';&lt;BR /&gt;
	  quit;&lt;BR /&gt;
&lt;BR /&gt;
aa is my library where I have 'n' number of sas datasets.</description>
      <pubDate>Wed, 14 Apr 2010 16:50:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75291#M21827</guid>
      <dc:creator>ren2010</dc:creator>
      <dc:date>2010-04-14T16:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: Number of components in a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75292#M21828</link>
      <description>Check your WHERE clause - you UPCASE the variable but you specify a lower-case constant value.....  Also, your code presumes you have a prior LIBNAME defined with a libref of "AA".&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Wed, 14 Apr 2010 17:04:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75292#M21828</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-04-14T17:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Number of components in a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75293#M21829</link>
      <description>I tried the following,still did not work,says NO ROWS SELECTED&lt;BR /&gt;
&lt;BR /&gt;
libname Aa 'O:\nnb_O\roms\quarter';&lt;BR /&gt;
proc sql;&lt;BR /&gt;
    &lt;BR /&gt;
   select *&lt;BR /&gt;
      from dictionary.tables&lt;BR /&gt;
      where libname='Aa';&lt;BR /&gt;
	  quit;</description>
      <pubDate>Wed, 14 Apr 2010 20:07:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75293#M21829</guid>
      <dc:creator>ren2010</dc:creator>
      <dc:date>2010-04-14T20:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Number of components in a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75294#M21830</link>
      <description>Suggest you desk-check the program by removing the WHERE.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Wed, 14 Apr 2010 20:10:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75294#M21830</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-04-14T20:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: Number of components in a library</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75295#M21831</link>
      <description>LIBNAMES are stored internally to SAS as UPPER CASE.  So Aa, aa, and AA are all the same library, AA.  See the note in your log.</description>
      <pubDate>Wed, 14 Apr 2010 20:49:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-of-components-in-a-library/m-p/75295#M21831</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2010-04-14T20:49:07Z</dc:date>
    </item>
  </channel>
</rss>

