Search notes:

SAS: dictionary.members

Describe

proc sql;
  describe table dictionary.members;
quit;


/*
create table DICTIONARY.MEMBERS
  (
   libname char(8) label='Library Name',
   memname char(32) label='Member Name',
   memtype char(8) label='Member Type',
   dbms_memtype char(32) label='DBMS Member Type',
   engine char(8) label='Engine Name',
   index char(3) label='Indexes',
   path char(1024) label='Pathname'
  );
 */
Github repository about-SAS, path: /programming/dictionary/members/describe.sas

Select members of a library

The following SQL statement selects the members of a library:
libname tq84_lib 'p:\ath\to\dir';

proc sql;
  select
    memname,
    memtype,
    index,
    engine
 /* path */
  from
    dictionary.members
  where
    libname = 'TQ84_LIB';
quit;
Github repository about-SAS, path: /programming/dictionary/members/select-all.sas

See also

dictionary.libnames
dictionary tables
proc dataset: list files in library

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/Companie...', 1759408436, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Companies-Products/SAS/programming/dictionary/members/index(83): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78