Features: |
CONTENTS statement option: DATA= |
Other features: |
SAS data set option: READ= |
options pagesize=40 linesize=80 nodate pageno=1;
LIBNAME health
'SAS-library';
proc datasets library=health nolist;
contents data=group (read=green) out=grpout; title 'The Contents of the GROUP Data Set'; run;