/****************************************************************************** * Programme : Beispiel 5: Ein SAS-Dataset beschreiben * Reference : BEISPI2F7B * Source : https://www.wearecas.eu/en/sampleCode/BEISPI2F7B ******************************************************************************/ /* --- BLOC 1 --- */ 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; quit;