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 (August 1996, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Sat, 10 Aug 1996 22:34:38 +0200
Reply-To:     pwcons@csa.nl
Sender:       "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From:         Wiel Maessen <pwcons@CSA.NL>
Organization: PW Consulting BV
Subject:      Re: proc cport/cimport

Bruce S Libman wrote: > > Greetings, > > I am having trouble transporting a SAS data set from SAS PC DOS to Unix > system. > ...... > > Any ideas on how to proceed? > > Thanks > > Bruce

Bruce, What was the exact code for CPORT on PC and CIMPORT on Unix? Remember that these two procedures have multiple possibilities: import/export of libraries and datasets. Please use the same type of code for both sides.

Also try defining an LRECL=80 for the export file in a FILENAME statement:

FILENAME export 'sascat.dat' LRECL=80; PROC cport DATA=test FILE=export; RUN;

-- Wiel Maessen PW Consulting BV SAS(R) Quality Partner, Holland Home Page: http://www.csa.nl/bedrijven/pwcon/pwc.html CompuServe: 100270,250


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