SAS Datasets

A utility procedure for managing tables.


Usage

To list all tables in a library, try:

proc datasets library=LIBREF;
run;

Delete Statement

To delete a table, 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

SAS/Datasets (last edited 2023-03-30 20:05:13 by DominicRicottone)