⇤ ← Revision 1 as of 2023-03-30 15:04:13
Size: 338
Comment:
|
Size: 507
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 13: | Line 13: |
To delete a dataset, try: | To list all datasets found in a library, try: {{{ proc datasets library=LIBREF; run; }}} === Delete Statement === To delete a dataset, 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 datasets.
Contents
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.