Size: 507
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 list all datasets found in a library, try: | To list all tables in a library, try: |
Line 24: | Line 24: |
To delete a dataset, use the '''delete''' statement. | To delete a table, use the '''delete''' statement. |
SAS Datasets
A utility procedure for managing tables.
Contents
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.