home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / bit / listserv / sasl / 3790 < prev    next >
Encoding:
Text File  |  1992-08-19  |  1.2 KB  |  37 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!uvaarpa!darwin.sura.net!paladin.american.edu!auvm!SIUCVMB.BITNET!GR3461
  3. Message-ID: <SAS-L%92081912392653@UGA.CC.UGA.EDU>
  4. Newsgroups: bit.listserv.sas-l
  5. Date:         Wed, 19 Aug 1992 11:37:49 CST
  6. Reply-To:     GR3461@SIUCVMB.BITNET
  7. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  8. From:         GR3461@SIUCVMB.BITNET
  9. Subject:      Re. Space problem on SAS 6.07
  10. Lines: 25
  11.  
  12. > Dear SAS-Lers:
  13. >
  14. >         Here I include some note messages from two runs of ONE program.
  15. > It worked fine on version 6.06 but failed in version 6.07 on the same
  16. > platform, saying 'insufficient space' in the 2nd data step or
  17. > 'insufficient memory' if sort the 1st dataset.
  18. >
  19. >         Could anyone please tell me what shall I do to solve the problem?
  20. >
  21.  
  22.  Deborah Cannon suggested to put WORK parameter on Exec Card of JCL
  23.  such as:
  24.  
  25.           exec sas,work=('xxxx,xxxx')
  26.  
  27.  I agree with him/her. When I run my job, my exec card looks like:
  28.  
  29.          / EXEC SAS,WORK='6000,1800',REGION=4000K
  30.  
  31.  If you work on MVS, you should be able to see how much space you need
  32.  from your batch output. Space requested for your job - space
  33.  distributed by default = space you need to add.
  34.  
  35.  Qin Wang
  36.  Southern Illinois University
  37.