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 (June 1999, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: Lyman Wu <lwu@PBDSINC.COM>, SAS-L <sas-l@listserv.uga.edu>
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


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