home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / bit / listserv / sasl / 4098 < prev    next >
Encoding:
Text File  |  1992-09-08  |  1.1 KB  |  35 lines

  1. Newsgroups: bit.listserv.sas-l
  2. Path: sparky!uunet!wupost!tulane!ames!uakari.primate.wisc.edu!usenet.coe.montana.edu!news.u.washington.edu!glia!tamara
  3. From: tamara@glia.biostr.washington.edu (tiny t)
  4. Subject: Re:      PC DOS SAS 6.03 XPORT Engines
  5. Message-ID: <1992Sep9.035624.25072@u.washington.edu>
  6. Sender: news@u.washington.edu (USENET News System)
  7. Organization: Dept Biological Structure-University of Washington
  8. References: <SAS-L%92090815342938@UGA.CC.UGA.EDU>
  9. Date: Wed, 9 Sep 1992 03:56:24 GMT
  10. Lines: 23
  11.  
  12. In article <SAS-L%92090815342938@UGA.CC.UGA.EDU> David Hopkins <DHOPKINS@ERS.BITNET> writes:
  13. >Help SAS Users,
  14. >
  15. >I have an OS/2 SAS, 6.06 transport dataset.  Can I read in this file
  16. >using PC DOS SAS 6.03 using the XPORT engine?  I have a couple of lines
  17. >of code that are not working:
  18. >
  19. >
  20. >             filename  indata  'd:\disclose.dat' ;  run;
  21. >             libname   indata  xport ; run;
  22. >
  23. Your code should be
  24.         libname indata sasv5xpt 'd:\disclose.dat';
  25.         libname sasd 'wherever you want your SAS file permanently stored';
  26.         * For example
  27.         Libname sasd 'd:\saslib';
  28.  
  29.         PROC COPY in=indata out=sasd;
  30.         run;
  31.  
  32. -----
  33. tfischell@attmail.com
  34.  
  35.