SAS Datasets

A utility procedure for managing datasets.


Usage

To list all datasets found in a library, try:

proc datasets library=LIBREF;
run;

Delete Statement

To delete a dataset, use the delete statement.

proc datasets library=LIBREF nolist;
  delete TABLE;
run;

If the nolist option is not specified, the aforementioned listing of the library is also printed.


CategoryRicottone