home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / bit / listserv / sasl / 3501 < prev    next >
Encoding:
Internet Message Format  |  1992-07-30  |  2.8 KB

  1. Path: sparky!uunet!gatech!asuvax!lll-winken!miguel.llnl.gov!macq
  2. From: macq@miguel.llnl.gov (Don MacQueen)
  3. Newsgroups: bit.listserv.sas-l
  4. Subject: Re: Comma delimited output file from SAS on MVS/ESA
  5. Message-ID: <131968@lll-winken.LLNL.GOV>
  6. Date: 30 Jul 92 21:22:04 GMT
  7. References: <9207301512.AA21510@espresso.bcs.eca>
  8. Sender: usenet@lll-winken.LLNL.GOV
  9. Organization: Lawrence Livermore National Laboratory
  10. Lines: 55
  11. Nntp-Posting-Host: miguel.llnl.gov
  12.  
  13. In article <9207301512.AA21510@espresso.bcs.eca>, oldenkmp@ESPRESSO.BOEING.COM (P. Oldenkamp 5-4481) writes:
  14. |> ----------------------------------------------------------------------
  15. |> CONTENT:  Comment
  16. |> SUMMARY:  SI to have SAS/ACCESS product for PC file formats.
  17. |> REL/PLTF: 6.07.02/SunOS 6.06/MVS 6.06/CMS 6.04/PC-DOS
  18. |> E-ADDR:   oldenkmp@ESPRESSO.boeing.com
  19. |> NAME:     Paul OldenKamp
  20. |> PHONE:    206-865-4481
  21. |> ----------------------------------------------------------------------
  22. |> Simon Dunkley commented on Kevin's complaint:
  23. |> 
  24. |> > Kevin Nechodom <knechod@EDU.UTAH.MED.STACC> writes:
  25. |> > > Finally, to voice an old complaint, it would be nice if the standard
  26. |> > > implementation of SAS included 'standard' (in quotes in deference to
  27. |> > > those who actually measure and evaluate such standards) file formats,
  28. |> > > like CSV, DBF, DIF, etc.  With the proliferation of UN*X workstations
  29. |> > > and the migratation of DOS programs like dBase to those workstations,
  30. |> > > the need is becoming greater!
  31. |> > >
  32. |> >     What about proc dbf and proc dif?
  33. |> 
  34. |> They don't exist in releases beyond 6.04.  At a marketing 'seminar' last
  35. |> week the regional marketing manager announced that SI has decided to offer
  36. |> a SAS/ACCESS product for popular PC file structures(dbf, dif, etc.) under
  37. |> OS/2.  In response to a question, she said that no decision had been made
  38. |> on Windows 3.1.
  39. |> 
  40. |> It occures to me that with SAS/TOOLKIT third parties could meet the need
  41. |> and sell it independently of SI.  Wow, competition in SAS Software!!!
  42. |> 
  43.  
  44. In my opinion what is needed is a DELIMITER= option for the FILE statement,
  45. analagous to the same option for the INFILE statement. This option would
  46. put the chosen delimiter between each variable named in a PUT statement,
  47. with no extra spaces, and using the usual default formats. Or user
  48. specified formats. Then people who wanted tab or comma delimiters could
  49. do something as simple as:
  50.  
  51. data _null_;
  52.   set whatever;
  53.   file 'outfile.dat' delimiter=',';
  54.   put x y z;
  55.   run;
  56.  
  57. And get exactly what they want. No fuss, no muss, no macros, no
  58. SAS/ACCESS, no SAS/TOOLKIT and having to buy extra software.
  59.  
  60. What could be simpler?
  61. -- 
  62. ---------------------------------------------------
  63. Don MacQueen                   macq@miguel.llnl.gov
  64. Lawrence Livermore Nat. Lab.
  65. 7000 East Ave., L-307          (510) 423-1062
  66. Livermore, CA 94550
  67. ---------------------------------------------------
  68.