/****************************************************************************** * Programme : Stop Scrolling the Log: How to Export SAS Metadata to a Dataset with PROC DATASETS * Reference : EXAMPL7C93 * Source : https://www.wearecas.eu/en/sampleCode/EXAMPL7C93 ******************************************************************************/ /* --- 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;