MVSFORUMS.com Forum Index MVSFORUMS.com
A Community of and for MVS Professionals
 
 FAQFAQ   SearchSearch   Quick Manuals   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Help~~~IEW4000I
Goto page 1, 2  Next
 
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Problem Determination
View previous topic :: View next topic  
Author Message
samsun
Beginner


Joined: 24 Feb 2004
Posts: 19
Topics: 7
Location: TAIWAN

PostPosted: Tue Feb 24, 2004 5:01 am    Post subject: Help~~~IEW4000I Reply with quote

When I submittd a job, it finally abend and with the following console message :
IEW4000I FETCH FOR MODULE CEEBINIT FROM DDNAME STEPLIB FAILED BECAUSE INSUFFICIENT STORAGE WAS AVAILABLE
How could I solve this problem????
Thanks!
Back to top
View user's profile Send private message Send e-mail MSN Messenger
vini
Intermediate


Joined: 12 Jan 2004
Posts: 240
Topics: 48
Location: Maryland

PostPosted: Tue Feb 24, 2004 10:20 am    Post subject: Reply with quote

Rerun the job with a larger region size specified.
Back to top
View user's profile Send private message
samsun
Beginner


Joined: 24 Feb 2004
Posts: 19
Topics: 7
Location: TAIWAN

PostPosted: Tue Feb 24, 2004 7:52 pm    Post subject: Reply with quote

Thanks Vini, I know what the IBM's suggesttion, but the job's region was already set =0.....I would really like to know if we can tune the SLQA size in MVS.....Thanks again~
Back to top
View user's profile Send private message Send e-mail MSN Messenger
warp5
Intermediate


Joined: 02 Dec 2002
Posts: 429
Topics: 18
Location: Germany

PostPosted: Wed Feb 25, 2004 4:10 am    Post subject: Reply with quote

Maybe the job size is 0M, but what about the step size?
Back to top
View user's profile Send private message Visit poster's website
samsun
Beginner


Joined: 24 Feb 2004
Posts: 19
Topics: 7
Location: TAIWAN

PostPosted: Wed Feb 25, 2004 8:05 pm    Post subject: Reply with quote

There were no other steps.....
Back to top
View user's profile Send private message Send e-mail MSN Messenger
warp5
Intermediate


Joined: 02 Dec 2002
Posts: 429
Topics: 18
Location: Germany

PostPosted: Thu Feb 26, 2004 1:54 am    Post subject: Reply with quote

Post your JCL
Back to top
View user's profile Send private message Visit poster's website
samsun
Beginner


Joined: 24 Feb 2004
Posts: 19
Topics: 7
Location: TAIWAN

PostPosted: Thu Feb 26, 2004 2:24 am    Post subject: Reply with quote

JCL is as follow:
Code:

********************* Top of Data *****************************
//DSG21R JOB (750132040),                                             
//         'BTS6501',                                                 
//         CLASS=A,REGION=0K,                                         
//         MSGLEVEL=(1,1),                                             
//         MSGCLASS=X,                                                 
//         NOTIFY=DSG21,                                               
//         TIME=2                                                     
/*JOBPARM PROCLIB=PROC99                                               
//AT5111 EXEC BTSAX,USERLIB=CAPBTAP.LOAD                               
//BTSEDIT.DSKOUTO DD DSN=CAPBTAP.BTSCASE.DATA(AT115301),DISP=SHR       
//BTSEDIT.CARDINI DD *                                                 
./T TC=TATM0    LANG=ASM MBR=CAPPRABO PSB=PATM0                       
./T TC=T0020DY1                                                       
./D LTERM=T0020DY1     
./D EOS=$                       
./R IP=HEX                       
TATM0    ,                       
00211,                           
0,                               
1,                               
 ,                               
F,                               
AA,                             
030310,                         
110000,                         
8233,        <--++               
01,                             
I,                               
N,                               
0000000000,                     
0,                               
0,                               
0,                               
01,                             
AXXXXXXX5C2FF18A,               
 01,                               
02,                               
88,                               
                    ,             
  ,                               
                    ,             
00000000000,                     
0000000000,                       
1,                               
0,                               
1180048201134230900000000000000000
0,                               
T,                               
 ,                               
113,                             
FFFF,                             
104,                             
90011804002070000867D158901100, 
000000000000000987200000000000,   
1D00000000000000D0000000000000,   
0D0D0100000024,                   
   ,                               /*NO USE               
        ,                         /*MAC                 
$,                                                       
/*                                                       
//G.BTSIN DD DSN=*.BTSEDIT.DSKOUTO,DISP=SHR             
//G.SNAPF DD SYSOUT=X                                   
//*G.BTSOUT DD SYSOUT=X                                 
//G.BTSOUT  DD DSN=CAPBTAP.BTSCASE.RST(AT115301),DISP=SHR
Back to top
View user's profile Send private message Send e-mail MSN Messenger
vini
Intermediate


Joined: 12 Jan 2004
Posts: 240
Topics: 48
Location: Maryland

PostPosted: Thu Feb 26, 2004 9:29 am    Post subject: Reply with quote

How about REGION = 1M or something bigger instead of 0K ?!!
Back to top
View user's profile Send private message
Bill Dennis
Advanced


Joined: 03 Dec 2002
Posts: 579
Topics: 1
Location: Iowa, USA

PostPosted: Thu Feb 26, 2004 5:20 pm    Post subject: Reply with quote

Do the STEPs in proc BTSAX have REGION coded?

Bill
Back to top
View user's profile Send private message
Mike Chantrey
Intermediate


Joined: 10 Sep 2003
Posts: 234
Topics: 1
Location: Wansford

PostPosted: Tue Mar 02, 2004 9:45 am    Post subject: Reply with quote

Vini said
Quote:

How about REGION = 1M or something bigger instead of 0K ?!!

REGION=0K or REGION=0M
means you can have as much storage as is available, so it is the 'largest value' that the REGION parameter can have.

Samsun, as Bill says, the problem may well be in the BTSAX procedure having REGION= coded in its steps. Please look at this proc. If you don't know where it is located, look in the JESYSMSG output for your failed job and you will find a message like this:

IEFC001I PROCEDURE xxxxxxx WAS EXPANDED USING SYSTEM LIBRARY yyyy.zzzzzzz

This 'system library' is the dataset where your BTSAX proc is.
Back to top
View user's profile Send private message
vini
Intermediate


Joined: 12 Jan 2004
Posts: 240
Topics: 48
Location: Maryland

PostPosted: Tue Mar 02, 2004 11:39 am    Post subject: Reply with quote

Thanks ...for pointing that out , Mike . Smile

I wasnt even sure if what I'd said made no sense.. until now . I sure had thought of checking the manuals but never got down to it.

Any thoughts on what is the advantage of having a Finite value in REGION oppposed to the Zero ?!!
Back to top
View user's profile Send private message
samsun
Beginner


Joined: 24 Feb 2004
Posts: 19
Topics: 7
Location: TAIWAN

PostPosted: Tue Mar 02, 2004 7:56 pm    Post subject: Reply with quote

Thanks guys~
Let me pot the region size specified in the BTSAX:
1.G EXEC PGM=BTSRC000,REGION=512K
2.IEBGENER EXEC PGM=IEBGENER,REGION=2048K
I've been trying to modify these two resion sizes to 0 but no use.
Besides, this procedure is a BMP type.....

Thank u all again~
Back to top
View user's profile Send private message Send e-mail MSN Messenger
samsun
Beginner


Joined: 24 Feb 2004
Posts: 19
Topics: 7
Location: TAIWAN

PostPosted: Tue Mar 02, 2004 8:01 pm    Post subject: Reply with quote

Thanks guys~
Let me pot the region size specified in the BTSAX:
1.G EXEC PGM=BTSRC000,REGION=512K
2.IEBGENER EXEC PGM=IEBGENER,REGION=2048K
I've been trying to modify these two resion sizes to 0 but no use.
Besides, this procedure is a BMP type.....

Thank u all again~
Back to top
View user's profile Send private message Send e-mail MSN Messenger
Mike Chantrey
Intermediate


Joined: 10 Sep 2003
Posts: 234
Topics: 1
Location: Wansford

PostPosted: Wed Mar 03, 2004 9:02 am    Post subject: Reply with quote

Vini Said:
Any thoughts on what is the advantage of having a Finite value in REGION oppposed to the Zero ?!!
Two possibilities:
1/ If a program goes into a loop accumulating storage, a finite region size will make it abend sooner and with less disruption (paging maybe?) to other users.
2/ Some utilities may look at what space is available and GETMAIN workspace accordingly - they might use excessive storage with REGION=0M.

I don't know if 2/ really applies to anything. 1/ is certainly a valid consideration though.
I would tend to use something like REGION=6M for most jobs. I never seem to have problems with this in practice. However, I always use REGION=0M for CICS services since they have the DSALIM and EDSALIM parameters to control their storage allocation so consideration 1/ is taken care of by these limits.
Back to top
View user's profile Send private message
Mike Chantrey
Intermediate


Joined: 10 Sep 2003
Posts: 234
Topics: 1
Location: Wansford

PostPosted: Wed Mar 03, 2004 9:04 am    Post subject: Reply with quote

samsun said:
Quote:

I've been trying to modify these two resion sizes to 0 but no use.


Could you explain what you mean by 'no use'? Do you mean you can't modify the values or that you did change them but it didn't help?
If you can't change them (?RACF) then you really need to find someone who has the authority to do so.

Also, has your site recently converted to using the LE (Lanuage Environment) runtimes? (CEE modules are LE). LE takes up quite a bit more storage than previous non-LE runtimes and this could have triggered your problem.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Problem Determination All times are GMT - 5 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


MVSFORUMS
Powered by phpBB © 2001, 2005 phpBB Group