LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (April 2007, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 3 Apr 2007 07:30:42 -0700
Reply-To:   "Terjeson, Mark" <Mterjeson@RUSSELL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Terjeson, Mark" <Mterjeson@RUSSELL.COM>
Subject:   Re: How to assign a different directory for the work folder
Comments:   To: Ankur Shanker <ankur.shanker@EVALUESERVE.COM>
In-Reply-To:   A<A99CFB142B0B45489B4123C28ED33E3C169546CD@EVSEMAIL.Evalueserve.com>
Content-Type:   text/plain; charset="us-ascii"

Hi Ankur,

I guess the first question is: permanently or temporarily?

To temporarily change the WORK folder you utilize the USER= option. e.g.

libname tmplib 'mytempfolder';

option user=tmplib; * redirect WORK datasets ;

data sample; a=1; run;

option user=work; * put it back to the default ;

To permanently change where the session work folder is you need to edit your config.sas or sasv#.cfg file and look for -WORK for setting the base location. Please note that each session will still generate a unique session folder name at that location.

Hope this is helpful.

Mark Terjeson Senior Programmer Analyst, IM&R Russell Investment Group

Russell Global Leaders in Multi-Manager Investing

-----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Ankur Shanker Sent: Tuesday, April 03, 2007 7:17 AM To: SAS-L@LISTSERV.UGA.EDU Subject: How to assign a different directory for the work folder

Hello Everyone!

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.

Regards, Ankur Shanker ________________________________

The information in this e-mail is the property of Evalueserve and is confidential and privileged. It is intended solely for the addressee. Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken in reliance on it is prohibited and will be unlawful. If you receive this message in error, please notify the sender immediately and delete all copies of this message.


Back to: Top of message | Previous page | Main SAS-L page