3. SB37 - IEA848I NO DUMP WAS PRODUCED FOR THIS ABEND, DUE TO SYSTEM OR
INSTALLATION REQUEST.
If you get SB37 abend in your JCL and if you find the above information in your spool output message, then follow the below fix.
//Spacejob Job Class=A,Msglevel=1,Msgclass=s
//Step1 Exec Pgm=SpacUtil
//Input DD Dsn=Sample.Space.Input,Disp=SHR
//Output DD Dsn=Sample.Space.Output,
// Disp=(New,Catlg,Delete),
// Dcb=(Lrecl=80,Blksize=800,Recfm=FB),
// Space=(Trk(500,100),Rlse)
//Master DD Dsn=Sample.Master.Output,Disp=SHR
Fix
----
1. Find the Master Data set 'Sample.Master.Output'. Note the space allocated for it.
2. Delete the Data set 'Sample.Master.Output'.
3. Create a new data set with the same name with increased amount of space.
Example:
----------
Previously 'Sample.Master.Output' has Allocated space as Trk(100,100).
Now, increase its size as Trk(800,500).
This will fix your job.
INSTALLATION REQUEST.
If you get SB37 abend in your JCL and if you find the above information in your spool output message, then follow the below fix.
//Spacejob Job Class=A,Msglevel=1,Msgclass=s
//Step1 Exec Pgm=SpacUtil
//Input DD Dsn=Sample.Space.Input,Disp=SHR
//Output DD Dsn=Sample.Space.Output,
// Disp=(New,Catlg,Delete),
// Dcb=(Lrecl=80,Blksize=800,Recfm=FB),
// Space=(Trk(500,100),Rlse)
//Master DD Dsn=Sample.Master.Output,Disp=SHR
Fix
----
1. Find the Master Data set 'Sample.Master.Output'. Note the space allocated for it.
2. Delete the Data set 'Sample.Master.Output'.
3. Create a new data set with the same name with increased amount of space.
Example:
----------
Previously 'Sample.Master.Output' has Allocated space as Trk(100,100).
Now, increase its size as Trk(800,500).
This will fix your job.
No comments:
Post a Comment