| Date: | Mon, 28 Jul 1997 18:02:00 -0400 |
| Reply-To: | "Fehd, Ronald J." <rjf2@CDC.GOV> |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | "Fehd, Ronald J." <rjf2@CDC.GOV> |
| Subject: | Re: Geek questions |
| Content-Type: | text/plain |
|---|
Date: Mon, 28 Jul 1997 15:41:45 -0400
From: Toland_G <Toland_G@BLS.GOV>
> I have a question on working with SAS 6.12 (or any interactive SAS
> version for that matter). In interactive mode, is there a way to
clear
> out SAS's memory without exiting the program and starting up
again?
> ...
> I get tired of exiting every time I need to run a series of
programs.
> I'm looking for a magic command, like cntrl X or something that
would
> clean out RAM. (I already know how to use proc datasets to delete
> files, ...
%MACRO CLENWORK;/**ZAP ALL WORK SSD-S---------------------------------*/
proc DATASETS library = WORK memtype = (data) nolist kill;
run;
/*....................................................*CLENWORK*/%MEND;
usage:
%CLENWORK;
So put it on on one of your KEYS.
Ron Fehd, the macro maven, CDC, Atlanta GA
|