|
> From: Ankur Shanker
> I want to change the directory of the work folder from the
> default directory (/usr/tmp/SAS_workB91900004B5A_Evs01Sas03)
> to a new one. Is it possible in SAS9.1.3. We work on SAS
> using the linux server platform.
you probably do -not- want to do this
as sas allocates a temp folder and deletes at end of session
if you have access to system options such as date and time
to put into folder names
-and- can delete the folder after sas executes
then consider:
you need to do this with a command-line option
- - - !sasroot/en/sasv9.cfg - - -
/* Setup the default SAS System user work folder*/
-WORK "!TEMP\SAS Temporary Files"
on command line
sas MyProgram -work '<???>'
or in your
- - - !sasroot/sasv9.cfg - - -
-CONFIG "C:\Program Files\SAS\SAS 9.1\nls\en\SASV9.CFG"
-WORK "<new&improved&customized-by-linux-folder"
Ron Fehd the config
or macro maven CDC Atlanta GA USA RJF2 at cdc dot gov
|