|
|
| Author |
Message |
Rupesh.Kothari
Member of the Month
Joined: 27 Apr 2005 Posts: 489
|
|
|
|
HI Friends
I am getting the following error which executing a REXX.
| Code: |
36 +++ str1.q=SUBSTR(LINE1.cnt,1,133)
IRX0005I Error running REXXDEL, line 36: Machine storage exhausted |
Till last week this rexx ran fine. Can anyone help me to resolve this.
Thanks
Rupesh |
|
| Back to top |
|
 |
References
|
|
 |
Paddy
Active User
Joined: 12 Sep 2005 Posts: 54 Location: Paris France
|
|
|
|
Hi Rupesh,
Try to increase the SIZE parameters of your TSO logon and run again your rexx.
| Code: |
,------------------------------- TSO/E LOGON -----------------------------------
,IKJ56714A Enter current password for WSYCORB
,
,Enter LOGON parameters below: ,RACF LOGON parameters:
, Userid ===>,xxxxxxx, , , ,
, Password ===>, , , New Password ===>, ,
, Procedure ===>,TSOLOGON, , Group Ident ===>, ,
, Acct Nmbr ===>,9999 ,
, Size ===>,6000 ,
, Perform ===>, ,
, Command ===>,
,
,Enter an 'S' before each option desired below:,
, , ,-Nomail, , , ,-Nonotice, , , ,-Reconnect, , , ,-OIDcard ,
,PF1/PF13 ==> Help PF3/PF15 ==> Logoff PA1 ==> Attention PA2 ==> Reshow
,You may request specific help information by entering a '?' in any entry field
|
Regards.
Paddy |
|
| Back to top |
|
 |
Rupesh.Kothari
Member of the Month
Joined: 27 Apr 2005 Posts: 489
|
|
|
|
HI Paddy,
Thanks a lot for your quick responce.
I increased the size of TSO LOGON but getting same error while running the REXX.
Rupesh |
|
| Back to top |
|
 |
ofer71
Global Moderator
Joined: 27 Dec 2005 Posts: 1956 Location: Israel
|
|
|
|
Your problem is that you have very large data, so large that your storage size was exhausted. This is typical when reading large files using single EXECIO command.
I'm sure that there is a way to bypass the size problem by changing your program's logic.
If you'd likw that - you can post your complete REXX and we'll take a look.
O. |
|
| Back to top |
|
 |
amitava Warnings : 1 Active User
Joined: 30 Oct 2005 Posts: 192 Location: India
|
|
|
|
Hi,
I am also in accordance with OFFER71. Better you can change the logic of ur REXX routine to avoid this kind of problem. |
|
| Back to top |
|
 |
brgr88
New User
Joined: 05 Mar 2006 Posts: 6
|
|
|
|
Rupesh,
If you can, try running the exec with a batch job using a large REGION parameter; I don't know how to change this for TSO/ISPF logons.
//STEPNAME EXEC PGM=IKJEFT01,REGION=64M
//SYSPRINT DD SYSOUT=*
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
EXEC 'DATA.SET.NAME(MEMBER)'
/* |
|
| Back to top |
|
 |
|
|
|