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 1996, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 25 Jun 1996 12:44:47 GMT
Reply-To:     rob.thomas@his.com
Sender:       "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From:         Rob Thomas <rltstats@HIS.COM>
Organization: Advanced Data Analysis
Subject:      Re: sas export file

When I transport mainframe SAS files to a PC using a standard comm package, there are two things to note:

1. The file the MF SAS job exports to should be sequential format, lrecl=80 and fixed block;

2. turn off all ASCII to EBCDC translations, i.e., you want a generic binary file on the PC;

3. turn off all cr/lf translations, too.

Test the job on a small file using export/import in one job:

proc cport data=my.stuff file='abc.def.stuff' ; run ;

proc cimport data=work.stuff file='abc.def.stuff' ; run ;

you should see consecutiv ex-imports in the log...

====================================================================== Advanced Data Analysis, Est.'89. General statistical consulting and multi-platform SAS programming. 301-949-8065 ======================================================================


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