Previous Page | Next Page

Managing SAS Data Libraries

Review of SAS Tools


Procedures

PROC DATASETS <LIBRARY=libref>;

starts the procedure and specifies the library that the procedure processes, that is, the procedure input library. If you do not specify the LIBRARY= option, then the default is the WORK or USER library. PROC DATASETS automatically sends a directory listing to the SAS log when it is submitted.


Statements

QUIT;

executes any preceding statements that have not run and stops the procedure.

RUN;

executes the preceding group of statements that have not run without ending the procedure.

Previous Page | Next Page | Top of Page