void DeleteServerDataSets( Matrix mLibref, Matrix mDataSetNames )
Matrix mLibref
A character matrix containing the libref of the library that contains the data sets to be deleted.
Matrix mDataSetNames
A character matrix containing the names of the data sets to be deleted.
This module deletes any data set in the mLibref library whose name matches an element of mDataSetNames.
submit;
data A; x=1; run;
data B; x=2; run;
data C; x=3; run;
endsubmit;
run DeleteServerDataSets( "work", {"A" "C"} );
ds = datasets();
print "The data sets in WORK are: " ds;