Re: CMS machine size calculation??

2008-11-05 Thread Huegel, Thomas
: IBMVM@LISTSERV.UARK.EDU Subject: Re: CMS machine size calculation?? I'd say the storage for a variable needs to be contiguous. Note that you can exploit tricks: REXX will not free the storage for a variable when it shrinks (at least, that's what I heard ages ago). So you might try to pr

Re: CMS machine size calculation??

2008-11-05 Thread Kris Buelens
ataline) > 124 +++ dataline = dataline || newline > DMSREX450E Error 5 running FTGET EXEC, line 124: Machine storage exhausted or > request exceeds limit > Ready(20005); T=4.30/5.32 09:30:49 > > -Original Message- > From: The IBM z/VM Operating System [mailto:[EMAIL

Re: CMS machine size calculation??

2008-11-05 Thread Alan Altmark
On Wednesday, 11/05/2008 at 10:42 EST, "Huegel, Thomas" <[EMAIL PROTECTED]> wrote: > I am still missing something can anyone tell me what it is? > This is the console from my little REXX program .. NEWLINE is =< 4K. > > It appears there is plenty of unallocated storage.. or do I need to be looki

Re: CMS machine size calculation??

2008-11-05 Thread Huegel, Thomas
4.30/5.32 09:30:49 -Original Message- From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] Behalf Of Alan Altmark Sent: Tuesday, November 04, 2008 11:23 AM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: CMS machine size calculation?? On Tuesday, 11/04/2008 at 12:00 ES

Re: CMS machine size calculation??

2008-11-04 Thread Alan Altmark
On Tuesday, 11/04/2008 at 12:00 EST, "Huegel, Thomas" <[EMAIL PROTECTED]> wrote: > But how can I determine if the CMS machine has enough virtual memory defined > to handle the variable before building it? > It's not good enough to just do a Q V STOR since that tells me > nothing regarding h

Re: CMS machine size calculation??

2008-11-04 Thread Michael Donovan
ARK.EDU> CMS machine size calculation?? 11/04/2008 12:00

Re: CMS machine size calculation??

2008-11-04 Thread Schuh, Richard
machine size calculation?? Hi All, I have this little problem I am working on that goes like this. I have a REXX program that builds a (potentially) very large variable possibly as large as 16meg (the max) now I can easily check to see if the

CMS machine size calculation??

2008-11-04 Thread Huegel, Thomas
Hi All, I have this little problem I am working on that goes like this. I have a REXX program that builds a (potentially) very large variable possibly as large as 16meg (the max) now I can easily check to see if the variable will exceed 16m and put out a message and stop the program early on.