home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / bit / listserv / sasl / 3439 < prev    next >
Encoding:
Text File  |  1992-07-27  |  1.9 KB  |  58 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!paladin.american.edu!auvm!SWIRL.MONSANTO.COM!GIBES
  3. Message-ID: <9207272042.AA27710@tin.monsanto.com>
  4. Newsgroups: bit.listserv.sas-l
  5. Date:         Mon, 27 Jul 1992 15:42:11 -0500
  6. Reply-To:     Kernon Gibes <gibes@SWIRL.MONSANTO.COM>
  7. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  8. From:         Kernon Gibes <gibes@SWIRL.MONSANTO.COM>
  9. Subject:      RE: SQL ? and SAS...
  10. Comments: To: SAS-L@uga.cc.uga.edu@tin.monsanto.com
  11. Comments: cc: GIBES@tin.monsanto.com
  12. Lines: 44
  13.  
  14.  CONTENT:   Response
  15.  SUMMARY:   SQL is part of base SAS, works on data sets/views, ...
  16.  REL/PLTF:  6.06+/all?
  17.  E-ADDR:    gibes@swirl.monsanto.com
  18.  NAME:      Kernon Gibes
  19.  PHONE:     (708) 506-2873
  20.  DATE/TIME: 27 July 1992, 4:03 p.m. CDT
  21.  
  22. Regarding:
  23.  
  24. >I've been watching the SQL discussions for quite a while and it
  25. >just struck me that I haven't a clue on what types of files are
  26. >being used in these queries...
  27.  
  28. >Does SQL under SAS work with any file that SAS understands ??
  29.  
  30. Any SAS data set or view (actually, if you have SAS/ACCESS, I imagine
  31. you could be accessing a non-SAS data file/view, but I'm not experienced
  32. with this).
  33.  
  34. >Do you need to have your datafiles in some special format ??
  35.  
  36. What kinds of formats are you speaking of?  Other than that the
  37. "datafiles" must be sets/views, I believe the answer is "no".
  38.  
  39. >Is the SAS SQL PROC specially priced? or is it part of Base SAS ?
  40.  
  41. It is part of base SAS.
  42.  
  43. >Short of asking the systems people... how can I tell if my
  44. >installation has SAS SQL on it's various machines ??
  45.  
  46. Since it is part of base SAS, version 6.06+, this should be more of a
  47. "which version of SAS am I running" question.  However, you could always
  48. just try a:
  49.  
  50.    data junk; x=1; stop; run;
  51.    proc sql;
  52.     validate
  53.      select * from junk;
  54.    quit;
  55.  
  56. and you'll either get a "NOTE: The PROC SQL syntax is valid" or an
  57. error message that PROC SQL is unknown.
  58.