home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / bit / listserv / sasl / 4944 < prev    next >
Encoding:
Text File  |  1992-11-07  |  2.1 KB  |  58 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!darwin.sura.net!paladin.american.edu!auvm!VCUMVS.BITNET!RIKARD
  3. Message-ID: <SAS-L%92110609285944@VTVM2.CC.VT.EDU>
  4. Newsgroups: bit.listserv.sas-l
  5. Date:         Fri, 6 Nov 1992 09:28:59 -0500
  6. Reply-To:     RIKARD@VCUMVS.BITNET
  7. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  8. From:         RIKARD@VCUMVS.BITNET
  9. Subject:      transport datasets
  10. Lines: 46
  11.  
  12. Content: Response
  13. Summary: Multiple transport datasets
  14. Release and platform: 6.07 MVS, at least
  15. Name:    Pete Rikard
  16. Mail addresses:BITNET Rikard@vcumvs Internet rikard@vcuucc.ucc.vcu.edu
  17. Real Addresses:Virginia Commonwealth University, Computer Center
  18.                110 S. 7th Street, 4th Floor, Richmond, VA 23219
  19.                Phone (804) 786-4828    FAX: (804) 371-8464
  20. *******************************************************************
  21. David was trying to use DATA steps to write multiple SAS datasets
  22. in transport format to disk. Only the LAST dataset written remained
  23. (see note below).
  24.  
  25. The key is the DISP=OLD processing that SAS is doing. SAS writes
  26. each new transport dataset at the beginning of the file. Change
  27. either the DISP= to DISP=MOD or add the MOD  parameter to the
  28. libname statement. Then SAS will write each new dataset at the
  29. end of the current file.
  30. *******  original note *******************************************
  31. From:         David Nasser <NASSER@UMSLVMA.BITNET>
  32. Subject:      MVS Transport Lib running 6.07???
  33.  
  34. Content   : Question
  35. Summary   : MVS Transport Lib running 6.07??
  36. System(s) : MVS/ESA/SAS6.07
  37. Name      : David Nasser
  38.  
  39. Am I supposed to be able to write an MVS SAS transport *library* to
  40. disk running SAS6.07?
  41.  
  42. I thought it was as simple as allocating the transport library
  43. and writing numerous members (type "data") to it.
  44.  
  45. But after I run something like:
  46.  
  47.  //YR1 DD DSN=YEAR1,UNIT=CART,DISP=OLD
  48.  //YR2 DD DSN=YEAR2,UNIT=CART,DISP=OLD
  49.  .
  50.  .
  51.  //YR8 DD DSN=YEAR8,UNIT=CART,DISP=OLD
  52.  //TRANS DD DSN=TRANS,DISP=OLD,DCB=(RECFM=FB,LRECL=80,BLOCKSIZE=8000)
  53.  
  54. LIBNAME TRANS XPORT 'TRANS';
  55. DATA TRANS.YR1;
  56.  SET YR1.YEAR1;
  57.   KEEP thisun thatun;
  58.