Date: Wed, 2 Jun 1999 14:22:06 -0700
Reply-To: "Terjeson, Mark" <TERJEMW@DSHS.WA.GOV>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: "Terjeson, Mark" <TERJEMW@DSHS.WA.GOV>
Subject: Re: transfer SAS data set from UNIX to PC
Content-Type: text/plain
Hi Lyman,
Try the SASSFIO. It will do the conversion automatically for you.
example:
*--------------------------------------------------------*;
* SASSFIO engine *
* Access a UNIX SAS dataset from a PC SAS environment *
*--------------------------------------------------------*;
libname test sassfio
'yoursystem://yourpath/datasetA.ssd01'
user="userid"
pass="password"
;
options obs=10;
proc print data=test.datasetA;
run;
Note: Typically the LIBNAME points to a directory, which will refer to many
files.
When using the SASSFIO you specify the path and the filename,
because
it is pointing to only one file.
HTH,
Mark Terjeson
Washington State Department of Social and Health Services
Research and Data Analysis
(360) 902-0741
terjemw@dshs.wa.gov
> -----Original Message-----
> From: Lyman Wu [SMTP:lwu@PBDSINC.COM]
> Sent: Wednesday, June 02, 1999 1:49 PM
> To: SAS-L@UGA.CC.UGA.EDU
> Subject: transfer SAS data set from UNIX to PC
>
> Hello, everyone:
>
> I have a data set TRY in unix SAS and want to use this data set under SAS
> Windows. How to transfer it? what about vise versa?
> I appreciate the help very much.
>
> Lyman Wu
> PBDS, Inc.
> Tel: 732-530-9303
> Fax:732-933-9267
> Email: lwu@pbdsinc.com
|