home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / bit / listserv / sasl / 3998 < prev    next >
Encoding:
Text File  |  1992-09-02  |  1.9 KB  |  52 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!paladin.american.edu!auvm!UWPG02.BITNET!CLARK
  3. X-Envelope-to: sas-l@ualtavm.bitnet
  4. X-VMS-To: in%"sas-l@ualtavm.bitnet"
  5. MIME-version: 1.0
  6. Content-transfer-encoding: 7BIT
  7. Message-ID: <01GOBIGW47SI9UM49D@uwpg02.uwinnipeg.ca>
  8. Newsgroups: bit.listserv.sas-l
  9. Date:         Wed, 2 Sep 1992 18:56:47 -0600
  10. Reply-To:     Jim Clark <CLARK@UWPG02.BITNET>
  11. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  12. From:         Jim Clark <CLARK@UWPG02.BITNET>
  13. Subject:      SQL again - Conflict between WHERE and OBS option
  14. Lines: 36
  15.  
  16. Hi
  17.  
  18.      I am working on some programs that eventually must work with somewhat
  19. large (for me) files.  Unfortunately when I use the OBS= option, I get the
  20. following error message from SQL.  Is there anyway around this limitation or an
  21. alternative approach to restricting the number of records processed during
  22. program devlepment.
  23.  
  24. Best Wishes
  25. Jim
  26.  
  27. James M. Clark                  CLARK@UWPG02.BITNET  (note ZERO-TWO)
  28. Department of Psychology        CLARK@UWPG02.UWINNIPEG.CA
  29. University of Winnipeg          (204) 786-9359
  30. Winnipeg, Manitoba, Canada
  31. R3B 2E9
  32.  
  33.  
  34. 53         proc sql;
  35. 54             select
  36. 55               max(dep), max(crs), max(sec), max(ins), 0, ., ., ., ., .,
  37. max(n), mean(mn)
  38. 56               from freq
  39. 57               where qn<26
  40. 58               group by dep, crs, sec, ins;
  41. ERROR: A where clause may not be used with the FIRSTOBS or the OBS data set
  42. ERROR: A where clause may not be used with the FIRSTOBS or the OBS data set
  43. ERROR: A where clause may not be used with the FIRSTOBS or the OBS data set
  44.        options.
  45.        options.
  46.        options.
  47. ERROR: PROC SQL runtime error for operation=sqxsrc.
  48. ERROR: PROC SQL runtime error for operation=sqxsrc.
  49. ERROR: PROC SQL runtime error for operation=sqxsrc.
  50. NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of
  51.       statements.
  52.