Deleting all temporary datasets:
proc datasets library = work kill nolist;
quit;
Deleting specific datasets in the temp directory:
proc datasets;
delete kaz1 estes diminfo concon FITSTAT hlm1;
run;
Deleting all temporary datasets:
proc datasets library = work kill nolist;
quit;
Deleting specific datasets in the temp directory:
proc datasets;
delete kaz1 estes diminfo concon FITSTAT hlm1;
run;