/*
PROC CONTENTS <option(s)>;
CENTILES : Print centiles information for indexed variables
DATA= : Specify the input data set
DETAILS|NODETAILS : Include information in the output about the number of observations, number of variables, and data set labels
DIRECTORY : Print a list of the SAS files in the SAS data library
FMTLEN : Print the length of a variable's informat or format
MEMTYPE= : Restrict processing to one or more types of SAS file
NODS : Suppress the printing of individual files
NOPRINT : Suppress the printing of the output
ORDER=IGNORECASE : Print a list of variables in alphabetical order even if they include mixed case names
OUT= : Specify the output data set
OUT2= : Specify an output data set that contains information about constraints
SHORT : Print abbreviated output
VARNUM : Print a list of the variables by their logical position in the data set
*/
proc contents data = sashelp.prdsal2
noprint
out = proc_contents;
run;
********************************************
*
* Do your best!!
*
* Homepage : http://www.javarang.net
* Javarang Lee
*
********************************************