![]() Chapter Contents |
![]() Previous |
![]() Next |
| The SQL Procedure |
| Procedure features: |
| ||
| Table: | DICTIONARY.MEMBERS |
| Program |
libname proclib 'SAS-data-library';
| | options nodate pageno=1 source linesize=80 pagesize=60; |
| | proc sql; describe table dictionary.members; |
| | title 'SAS Files in the PROCLIB Library';
select memname, memtype
from dictionary.members
where libname='PROCLIB'; |
| Log |
2 options nodate pageno=1 source linesize=80 pagesize=60; 3 proc sql; 4 describe table dictionary.members; NOTE: SQL table DICTIONARY.MEMBERS was created like: create table DICTIONARY.MEMBERS ( libname char(8) label='Library Name', memname char(32) label='Member Name', memtype char(8) label='Member Type', engine char(8) label='Engine Name', index char(32) label='Indexes', path char(1024) label='Path Name' ); 5 title 'SAS Files in the PROCLIB Library'; 6 select memname, memtype 7 from dictionary.members 8 where libname='PROCLIB'; |
| Output |
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.