|
Try this. Create a DOS batch file, such as SASrun.bat and put in
something like:
C:\Progra~1\SASIns~1\SAS\V8\sas.exe -CONFIG
"C:\wa\NHA\2003Spring\SASV8.cfg" -SASUSER "C:\wa\NHA\2003Spring\SASUser\V8"
-WORK "C:\wa\NHA\2003Spring\SASDATA\work"
Everytime you want run SAS, run SASrun.bat to invoke SAS. By this
way, you can run several different project in the same time,
for you could assign them to their own config, sasuser and work
file/directory.
To run all sas files in a project, create a DOS batch file, such as
SASbatch.bat, adding the following:
sas BATCH_1.SAS -BATCH -CONFIG "C:\wa\NHA\2003Spring\SASV8.cfg"
-SASUSER "C:\wa\NHA\2003Spring\SASUser\V8" -WORK
"C:\wa\NHA\2003Spring\SASDATA\work"
in BATCH_1.SAS, use %include to include all SAS files you want to
run in this batch-run;
good luck!
Yu
From: Kirill Andreev <andreevk@POST.QUEENSU.CA> on 04/17/2003
09:04 AM
Please respond to Kirill Andreev
<andreevk@POST.QUEENSU.CA>@SMTP@ExchangePA
To: SAS-L@LISTSERV.UGA.EDU@SMTP@ExchangePA
cc:
Subject: How to change folder where SAS stores temporary
files?
I have done some search on this topic but nothing worked for me.
Here the version I am using:
NOTE: SAS (r) Proprietary Software Release 8.1 (TS1M0)
Thanks in advance,
Kirill Andreev
|