| Date: | Wed, 15 Nov 2000 08:58:28 -0500 |
| Reply-To: | Edward Heaton <HEATONE@WESTAT.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Edward Heaton <HEATONE@WESTAT.COM> |
| Subject: | Re: PC SAS - work '/public' |
|
| Content-Type: | text/plain; charset="iso-8859-1" |
|---|
Antonio;
I am here not to answer your question, but to present an alternative.
This is the method I use.
Libname temp "**path**" ; Options user=temp ;
With these two statements, I can use one-level data set names just like I
would if I were writing to the WORK library, but instead they go to the TEMP
library. (If I really do want to write to the WORK library, I will have to
specify WORK.WhatEver.) This allows me to look at any output data sets
after the job has run. Since this is just a substitute for the WORK
library, I can delete the data sets in the TEMP library at will. In fact, I
usually include the following code at the start of my batch jobs.
Proc datasets library=temp kill ;
Quit ;
Edward Heaton, SAS Senior Statistical Systems Analyst,
Westat (An Employee-Owned Research Corporation),
1550 Research Boulevard, Room 2018, Rockville, MD 20850-3159
Voice: (301) 610-4818 Fax: (301) 294-3992
mailto:heatone@westat.com http://www.westat.com
-----Original Message-----
From: wong [mailto:wongantonio@HONGKONG.COM]
Sent: Wednesday, November 15, 2000 2:06 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: PC SAS - work '/public'
Hi friends,
Some experts here taught me to use "-work '/public'" to change work
directory with my UNIX SAS system. Now, I would like to ask how I can
change the work directory with my PC SAS system.
Best regards,
Antonio
|