Pages

Tuesday, February 25, 2014

Widgets

How to clear library of data in SAS

At times there is a need to clear the permanent library of datasets at one go. There is an option in SAS, PROC DATASETS provides a solution on the proc statement with a Kill Option.

Here is an example:

PROC DATASETS LIBRARY = TEMP KILL;
RUN;

No comments:

Post a Comment