Published on :
Utility INTERNAL_CREATION

WORK Library Consultation

This code is also available in: Deutsch Español Français
This script uses the DATASETS procedure targeting the WORK library. Without modification instructions (like DELETE or CHANGE), this execution's primary purpose is to list the tables, views, and indexes present in the temporary WORK library of the active SAS© session.
Data Analysis

Type : INTERNAL_CREATION


The script interacts only with the temporary WORK library of the current session.

1 Code Block
PROC DATASETS
Explanation :
Launches the DATASETS utility procedure on the WORK library. The QUIT and RUN commands ensure proper closure of the step.
Copied!
1PROC DATASETS LIB = WORK;
2QUIT;
3RUN;
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.