home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / bit / listserv / sasl / 3912 < prev    next >
Encoding:
Text File  |  1992-08-26  |  2.1 KB  |  61 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!europa.asd.contel.com!paladin.american.edu!auvm!GTE.COM!GLG2
  3. X-Mailer: ELM [version 2.3 PL10]
  4. Message-ID: <9208261759.AA18450@bunny.gte.com>
  5. Newsgroups: bit.listserv.sas-l
  6. Date:         Wed, 26 Aug 1992 13:59:02 EDT
  7. Reply-To:     Gail Gill <glg2@GTE.COM>
  8. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  9. From:         Gail Gill <glg2@GTE.COM>
  10. Subject:      Running out of space
  11. Comments: To: sas-l%marist.bitnet@cunyvm.cuny.edu
  12. Lines: 47
  13.  
  14. Hello fellow sas-lers,
  15.   Once again a cry for help. I am trying to run a program without
  16. much success. I seem to be running into a problem with space,
  17. but when I run the program with a forked subprocess to show
  18. available space on the work disk, I find that I have 720 megabytes
  19. of space available. As you can tell below, I have dropped
  20. unnecessary variables from the data set, but am still unable to get
  21. anywhere. Are there any suggestions?
  22.  I have included a portion of the program where it is blowing up.
  23. Thanks in advance for any and all help.
  24.  
  25. Gail Gill
  26. glg2@gte.com
  27.  
  28.  
  29. The log file in part:
  30. NOTE: Running on VAX Model 8820 Serial Number 114500A3.
  31.  Welcome to the new SAS System, Release 6.06.
  32.  
  33. 4          libname in1 'd07:[glg2]';
  34. NOTE: Libref IN1 was successfully assigned as follows:
  35.       Engine:        V606
  36.       Physical Name: D07:[GLG2]
  37. 5
  38. 6            data one;
  39. 7              set in1.yopart;
  40. 8          drop dir zip contype concode mktno itmcnt itmseq discpgm discphs
  41. 9           clhdstrc clhdnum dsp spc tmk lst numbr column pts ;
  42. 10
  43. 11
  44. 12
  45.  
  46. NOTE: The data set WORK.ONE has 164179 observations and 34 variables.
  47.  
  48. 13         proc sort data=one out=oneone;
  49. 14          by pubdte clasgrp cust;
  50. 15
  51.  
  52. ERROR: Error writing work file, possibly out of disk space.
  53. ERROR: Host sort cannot be used.
  54. ERROR: Host sort cannot be used.
  55. ERROR: Host sort cannot be used.
  56. NOTE: The SAS System stopped processing this step because of errors.
  57. NOTE: SAS set option OBS=0 and will continue to check statements. This may cause
  58.  NOTE: No observations in data set.
  59. WARNING: The data set WORK.ONEONE may be incomplete.  When this step was stopped
  60.  there were 0 observations and 34 variables.
  61.