My JCL have five steps & I created new versions of GDG in
first step through fourth step & fifth step I was refered
Step one GDG version. My JCL got abend at 4th step and how
I can restart my JCL Please let me know the answers.
//STEP1 EXEC GDG1(+1) DISP=(NEW)
//STEP2 EXEC GDG1(+2) DISP=(NEW)
//STEP3 EXEC GDG1(+3) DISP=(NEW)
//STEP4 EXEC GDG1(+4) DISP=(NEW)
//STEP5 EXEC GDG1(+1) DISP=(OLD)
Answers were Sorted based on User's Feedback
Answer / satheesh
JCL got Abended at 4th step, You need to restart from STEP4
In STEP4 use GDG1(+1),
In STEP5 use GDG1(-2).
Hope this make sense.
Is This Answer Correct ? | 56 Yes | 3 No |
Answer / arif
Here 2 scenario's are possible:
1) When dataset gets created in step 4 in case of
(DISP=NEW,CATLG,CATLG)
You need to restart from step 5:
In STEP5 use GDG1(-3).
2) When dataset doesn't get created in step 4 in case of
(DISP=NEW,CATLG,DELETE)
You need to restart from STEP4
In STEP4 use GDG1(+1),
In STEP5 use GDG1(-2).
Is This Answer Correct ? | 14 Yes | 0 No |
Answer / chandrababu
Plz ignore the previous ANS#5,
THis is correct one:
JCL got Abended at 4th step, You need to restart from STEP4
In STEP4 use GDG1(+1),
In STEP5 use GDG1(-2).
Is This Answer Correct ? | 13 Yes | 2 No |
Answer / virender
GDS being catalogued or not depends upon the disposition
(DISP) specified upon the abnormal termination of the job.
If the data sets are catalogued, you need to use GDG(-3)in
the rerun in step 5. Otherwise you can simply restart from
top.
Is This Answer Correct ? | 11 Yes | 4 No |
Answer / t srinivasa chary
we need to restart from step 4
In step4 use GDG(+1)
In step5 use GDG(-2)
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / atul
Sorry to confuse in the Ques. I just thought we r using GDG in step4 as OLD so i suggested to be use current GDG(+0) but i came to know that it creating the new one so we use GDG(+1) in step 4 not GDG(+0).
Corrected Ans 10 as below
When dataset doesn't get created in step 4 in case of
(DISP=NEW,CATLG,DELETE)
You need to restart from STEP4
In STEP4 use GDG1(+1),
In STEP5 use GDG1(-2).
Sorry for in convenience. :)
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ajay kumar ande
WE CAN USE COND=(04,LT) AT JOBLIB,IF WE GOT ABEND IN STEP4 IT BYPASSES AND EXECUTES NEXT STEP SO THAT WE CAN REFER STEP1
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / margaret
since GDG is not cataloged until the successful end of the
step, Your best bet is to use a referback to point to the
dataset in the subsequent step. This way you will get the
appropriate dataset prior to cataloging.
Is This Answer Correct ? | 6 Yes | 12 No |
Answer / atul
I believe, restarting from step 4 we need to use GDG1(0),
When dataset doesn't get created in step 4 in case of
(DISP=NEW,CATLG,DELETE)
You need to restart from STEP4
In STEP4 use GDG1(0),
In STEP5 use GDG1(-2).
Please correct me if i am wrong.
Is This Answer Correct ? | 0 Yes | 8 No |
Explain how can the attributes of one sms dataset be copied to another dataset?
wht r s722,s822,s122 and s222 abends pls reply fast
how to modify the copy book?explain with examples
can we write a proc with in a proc
How can return codes be tested before execution of a job step?
Is automatic restart possible in jcl? If yes, how?
what is the meaning of 'sysin dd dummy'
If I defined space as TRK(10,10) for the one file and lrecl = 4K then tell me how many record will vsam file will contain. will it 1,2,3,4,5 or how many,
there are 10 steps in jcl how to execute the steps from step2 to step8 only
wht do u mean by internal reader in jcl ? wht is the use of internal reader ?
Can we use empty VSAM as input?
what is the use of JCL?