LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (June 2001, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 19 Jun 2001 13:16:36 -0700
Reply-To:   "Terjeson, Mark" <TerjeMW@DSHS.WA.GOV>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Terjeson, Mark" <TerjeMW@DSHS.WA.GOV>
Subject:   Re: Fastest way to download data from MVS to PC
Comments:   To: Jeff Morison <jmt_mtf@YAHOO.COM>
Content-Type:   text/plain; charset=us-ascii

Hi Jeff,

For a number of years we have used the PROC DOWNLOAD, PROC CPORT/CIMPORT stuff. The DOWNLOAD was faster than the Slooooow pokie others. However, the majority of huge data we download is flat file and since SAS added the FTP engine to the FILENAME statement, we have used nothing else since.

We just use the FTP in the FILENAME statement and read the MVS flat files directly from our PC datasteps. There are hundreds of SAS people in our State environment and it doesn't seem like you hear much of the older methods used any more.

example:

FILENAME mytoken ftp "'MY.MVS.FILE.NAME'" user = "myacct" pass = "mypwd" host = "my.mvs.named.addr" debug;

Hope this is helpful, Mark Terjeson Washington State Department of Social and Health Services Division of Research and Data Analysis (RDA) mailto:terjemw@dshs.wa.gov

-----Original Message----- From: Jeff Morison [mailto:jmt_mtf@YAHOO.COM] Sent: Tuesday, June 19, 2001 12:55 PM To: SAS-L@LISTSERV.UGA.EDU Subject: Fastest way to download data from MVS to PC

Folks:

We download SAS data and ASCII files from MVS to PC on a regular basis, the size ranges from 0.5 GB to 35 GB, we would like to know the fastest way to bring the data to PC.

I know how to bring it using PROC DOWNLOAD, CREATE A TRANSPORT FILE USING CPORT/CIMPORT, PROC COPY, I just need to know other fastest and efficient ways to download.

Any help would be appreciated?.

Jeff.

__________________________________________________ Do You Yahoo!? Spot the hottest trends in music, movies, and more. http://buzz.yahoo.com/


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