how would you resolve sb37 and SE37?
Answers were Sorted based on User's Feedback
Answer / santhosh vayathuri
SB37 is the space abend we will get this abend when both
primary and secondary space is fill. we can increase the
primary and s3condary space for rectifying the abend.
sSE37 we will get this abend mostly for partitioned data
sets because of end of volume. we can rectify this abend
just zip the data set by just press the (z) in front of
this data set it will get compressed
| Is This Answer Correct ? | 12 Yes | 1 No |
Following are the space abends...
1. SD37 - no secondary allocation was specified.
2. SB37 - end of vol. and no further volumes specified.
3. SE37 - Max. of 16 extents already allocated.
Solutions....
1. provide the secondary allocation in the JCL.
2. Need to increase the values of space parameter or provide more than one volume
3. Increase the space parameter values.
| Is This Answer Correct ? | 3 Yes | 0 No |
What is the difference between structured cobol programming and object alternativelyiented cobol?
What are literals?
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
which one is the best of com and com-3.using of real time ?
what happens if parmparameter passes zero bytes to the program
which one is better among static call and dynamic call?
What care has to be taken to force program to execute above 16 Meg line?
suppose there is one PF having two members PF1 PF2.PF has one unique key Emp ID.could you tell me uniqueness in PF will be effective across members as well ? assume emp iD 3333 is in member PF1 would same Emp id be exist also in member PF2 ?
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
INREC AND OUTREC? HOW TO SPLIT 5K RECORDS TO DIFFERENT FILES IN A FILE IN COBOL? RESTART IN COBOL-DB2? ISOLATION LEVELS?
What is the difference between subscript and index?
In a COBOL program, 2 tables TABLE1 and TABLE2 are defined that are indexed by INDEX1 and INDEX2 respectively. Can we use INDEX1 with TABLE2 and INDEX2 with TABLE1?