Date: Fri, 5 Dec 1997 15:12:16 -0800
Reply-To: hanses02@popmail.med.nyu.edu
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: Siobhan Hansen <hanses02@POPMAIL.MED.NYU.EDU>
Organization: New York University
Subject: Re: sas transport file version 5
Content-Type: text/plain; charset=us-ascii
Edwin Leuven wrote:
>
> Dear All,
>
> I have a SAS portable dataset Version 5, generated on VMS. I would like
> to use it under SAS for Windows, Version 6 (I do not have access to
> mainframe and/or unix machines). Does someone has a clue how to convert
> the dataset?
>
> Thanks! Ed.
>
> --
> University of Amsterdam
> Department of Economics
> Roetersstraat 11
> 1018 WB Amsterdam
> the Netherlands
> +31 20 525 5241 (tel)
> +31 20 525 4310 (fax)
> leuven@fee.uva.nl
If this file was created using proc cport you can convert it using proc
cimport. For example:
filename in 'sas portable file';
libname sdl 'sas data library';
run;
proc cimport ds=sdl.filename infile=in;
run;
;
|