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



My JCL have five steps & I created new versions of GDG in first step through fourth step &..

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

My JCL have five steps & I created new versions of GDG in first step through fourth step &..

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

My JCL have five steps & I created new versions of GDG in first step through fourth step &..

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

My JCL have five steps & I created new versions of GDG in first step through fourth step &..

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

My JCL have five steps & I created new versions of GDG in first step through fourth step &..

Answer / khbnaidu

Sathish ur answer is correct.

Is This Answer Correct ?    8 Yes 2 No

My JCL have five steps & I created new versions of GDG in first step through fourth step &..

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

My JCL have five steps & I created new versions of GDG in first step through fourth step &..

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

My JCL have five steps & I created new versions of GDG in first step through fourth step &..

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

My JCL have five steps & I created new versions of GDG in first step through fourth step &..

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

My JCL have five steps & I created new versions of GDG in first step through fourth step &..

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

Post New Answer

More JCL Interview Questions

Explain how can the attributes of one sms dataset be copied to another dataset?

0 Answers  


wht r s722,s822,s122 and s222 abends pls reply fast

1 Answers   Wipro,


how to modify the copy book?explain with examples

2 Answers   TCS,


can we write a proc with in a proc

4 Answers   IBM,


How can return codes be tested before execution of a job step?

0 Answers  






Is automatic restart possible in jcl? If yes, how?

0 Answers  


what is the meaning of 'sysin dd dummy'

3 Answers  


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,

3 Answers   IBM,


there are 10 steps in jcl how to execute the steps from step2 to step8 only

6 Answers   EDS,


wht do u mean by internal reader in jcl ? wht is the use of internal reader ?

1 Answers   Syntel,


Can we use empty VSAM as input?

9 Answers   Convergys, Kanbay,


what is the use of JCL?

0 Answers  


Categories