libname zeus 'S:\Courses\stat-renaes\Stat404\SAS datasets\'; * your address would be where you set up a folder with the SAS file; proc print data=zeus.order_fact; run; * the following PROC CONTENTS will show ALL the (non-detailed) information about all datasets in the library (folder); proc contents data=zeus._all_ nods; run; * the following PROC CONTENTS with a specified dataset (and omitting the NODS statement) will give all the detailed information about that specific dataset; proc contents data=zeus.order_fact; run; proc means data=zeus.order_fact; var Total_retail_price; run;