Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2023-03-30 15:04:13
Size: 338
Comment:
Revision 3 as of 2023-03-30 20:05:13
Size: 495
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
A utility procedure for managing datasets. A utility procedure for managing tables.
Line 13: Line 13:
To delete a dataset, try: To list all tables in a library, try:

{{{
proc datasets library=LIBREF;
run;
}}}



=== Delete Statement ===

To delete a table, use the '''delete''' statement.
Line 21: Line 32:
If the `nolist` option is not specified, a directory listing of the library is printed. If the `nolist` option is not specified, the aforementioned listing of the library is also printed.

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)