Page 1 of 1

sb-37 error

PostPosted: Mon May 07, 2012 4:48 pm
by surime72
HI guys ,
getting error sb-37 error for the step DSN= name ,DISP=(NEW,CATLG,KEEP),SPACE=(CYL,(2,2),RLSE)

PARMS('ISASIZE(60K)') REASON CODE X'00E30301' TYPE X'00000800'
SYSTEM ABEND CODE B37 REASON CODE 00000004

Re: sb-37 error

PostPosted: Mon May 07, 2012 5:02 pm
by Robert Sample
And what did the manual tell you when you looked up the SB37 abend? If you have trouble with the manual, here's a link that might help you: http://www-03.ibm.com/systems/z/os/zos/bkserv/lookat/index.html

Re: sb-37 error

PostPosted: Mon May 07, 2012 11:09 pm
by dick scherrer
Hello,

I suspect somewhere there is an IEC030I in the output. . .

When you look up the SB37 in the System Completion Codes manual it says:
This system completion code is accompanied by message IEC030I.


You need to read about the IEC030I in the System Messages Manual.

Re: sb-37 error

PostPosted: Tue May 08, 2012 9:37 am
by steve-myers
To simplify a long story, your allocation request is too small. The long story, which is in the description for the IEC030I message, might give you some idea what to do, but this description is terribly obscure. What you have to do is figure out what your allocation should be, update your JCL, and try again.

Re: sb-37 error

PostPosted: Thu Feb 28, 2013 9:00 pm
by pmartyn
Aren't you missing the DCB parameter? When defining a dataset as new you need to tell the operating system, such as :
//dd1 dsn=name,
dcb=(recfm=fb,lrecl=80,blksize=8000),
space(cyl,2,2,rlse),
disp=(new,catlg,delete)

Re: sb-37 error

PostPosted: Thu Feb 28, 2013 9:04 pm
by Akatsukami
Aren't you missing the date of the last post in these threads?