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 |
Size of a column has been changed in DB2 table (Suppose it was of 5 characters and later changed to 4 characters) and forgot to change the DCLGEN in COBOL program, what will happen during the execution of code? If the program Abends then what will be the error? If it doesn't abend then hpw the error can be catched?
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
i want to learn mainframes. i completed MCA ,whats the future of mainframes
A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X
consider the following piece of code 01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250
what is the use of outrecord?
What is SDSF?
where will u code file status ?
Define REDEFINE clause and Is it possible to have the redefine clause anywhere in the working storage section for a data name?
I have 2 dimensional array with having 100 elements. So how to find the 11th item in an array?