IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Getting error in REXX: Machine storage exhausted


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Rupesh.Kothari

Member of the Month


Joined: 27 Apr 2005
Posts: 463

PostPosted: Mon Feb 20, 2006 1:53 pm
Reply with quote

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
View user's profile Send private message
Paddy

New User


Joined: 12 Sep 2005
Posts: 46
Location: Paris France

PostPosted: Mon Feb 20, 2006 2:13 pm
Reply with quote

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
View user's profile Send private message
Rupesh.Kothari

Member of the Month


Joined: 27 Apr 2005
Posts: 463

PostPosted: Mon Feb 20, 2006 2:55 pm
Reply with quote

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
View user's profile Send private message
ofer71

Global Moderator


Joined: 27 Dec 2005
Posts: 2358
Location: Israel

PostPosted: Mon Feb 20, 2006 3:19 pm
Reply with quote

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
View user's profile Send private message
amitava
Warnings : 1

Active User


Joined: 30 Oct 2005
Posts: 186
Location: India

PostPosted: Mon Feb 20, 2006 3:36 pm
Reply with quote

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
View user's profile Send private message
brgr88

New User


Joined: 05 Mar 2006
Posts: 6

PostPosted: Sun Mar 05, 2006 6:17 am
Reply with quote

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
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts Compile Several JCL JOB Through one r... CLIST & REXX 4
No new posts Running REXX through JOB CLIST & REXX 13
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Error when install DB2 DB2 2
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
Search our Forums:

Back to Top