DeleteServerDataSets

Prototype

void DeleteServerDataSets( Matrix mLibref, Matrix mDataSetNames )

Parameters

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.

Remarks

This module deletes any data set in the mLibref library whose name matches an element of mDataSetNames.

Example
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;
See Also

IsExistingServerDataSet