home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: bit.listserv.sas-l
- Path: sparky!uunet!wupost!tulane!ames!uakari.primate.wisc.edu!usenet.coe.montana.edu!news.u.washington.edu!glia!tamara
- From: tamara@glia.biostr.washington.edu (tiny t)
- Subject: Re: PC DOS SAS 6.03 XPORT Engines
- Message-ID: <1992Sep9.035624.25072@u.washington.edu>
- Sender: news@u.washington.edu (USENET News System)
- Organization: Dept Biological Structure-University of Washington
- References: <SAS-L%92090815342938@UGA.CC.UGA.EDU>
- Date: Wed, 9 Sep 1992 03:56:24 GMT
- Lines: 23
-
- In article <SAS-L%92090815342938@UGA.CC.UGA.EDU> David Hopkins <DHOPKINS@ERS.BITNET> writes:
- >Help SAS Users,
- >
- >I have an OS/2 SAS, 6.06 transport dataset. Can I read in this file
- >using PC DOS SAS 6.03 using the XPORT engine? I have a couple of lines
- >of code that are not working:
- >
- >
- > filename indata 'd:\disclose.dat' ; run;
- > libname indata xport ; run;
- >
- Your code should be
- libname indata sasv5xpt 'd:\disclose.dat';
- libname sasd 'wherever you want your SAS file permanently stored';
- * For example
- Libname sasd 'd:\saslib';
-
- PROC COPY in=indata out=sasd;
- run;
-
- -----
- tfischell@attmail.com
-
-