Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do you restart a step in JCL?

Answers were Sorted based on User's Feedback



How do you restart a step in JCL?..

Answer / sv

restart = jobstepname.procstepname
eg :jcl
if we need to restart from step2 in the proc...

//job1 job
restart=s1.step2
//s1 exec proc1
....

proc:
//proc1 proc
//step1 exec=...
//step2 exec=...
//step3 exec=...

Is This Answer Correct ?    92 Yes 20 No

How do you restart a step in JCL?..

Answer / guest

Use RESTART=step name.

Is This Answer Correct ?    73 Yes 18 No

How do you restart a step in JCL?..

Answer / izwarya

//JOBNAME JOB ACCT,RESTART=PROCA.STEP2
//PROCA EXEC PROCA

PROCA:

//PROCA PROC

//STEP1 EXEC ...
//STEP2 EXEC ...
//STEP3 EXEC ...

The above program would restart the job from STEP2.

Is This Answer Correct ?    46 Yes 2 No

How do you restart a step in JCL?..

Answer / santosh

Suppose there are 10 steps in a jcl,i need to execute form
the step5 to step10(need not execute from step1 to step4)
in that case i suppose to use restart.

ex:
//JOBNAME JOB ACCT,RESTART=PROCA.STEP5

//PROCA EXEC PROCA

PROCA:

//PROCA PROC

//STEP1 EXEC ...
//STEP2 EXEC ...
//STEP3 EXEC ...
//STEP4 EXEC ...
//STEP5 EXEC ...
//STEP6 EXEC ...
//STEP7 EXEC ...
//STEP8 EXEC ...
//STEP9 EXEC ...
//STEP10 EXEC ...

Is This Answer Correct ?    38 Yes 6 No

How do you restart a step in JCL?..

Answer / suputhru

Use RESTART=step name.

for procs:
restart = jclstepname.procstepname
jclstepname:name of the jcl step which invoke the proc.
Procstepname : the prostep which you want to restart.
eg :jcl
if we need to restart from step2 in the proc...

//job1 job restart=s1.step2
//s1 exec proc1
....

proc:
//proc1 proc
//step1 exec=...
//step2 exec=... -----Here we are going to execute step2
//step3 exec=...

--- Hi SV, you given a awesome answer. keep it up.
-Sk.

Is This Answer Correct ?    24 Yes 2 No

How do you restart a step in JCL?..

Answer / manas mohapatra uradha

Restart = Procstep.stepname

Is This Answer Correct ?    30 Yes 13 No

How do you restart a step in JCL?..

Answer / rajani mazumder

There are 3 ways to achieve the above task.
1) Using restart & Cond:
Code restart=step15,cond=(0,le)
2) using restart & Null stmt
restart=step15, Code a null stmt(//) after step15.
3) Using Iebedit
//jobcard
//stepname exec pgm=iebedit
//sysut1 dd dsn=actual pds/ps that has the jcl
//sysut2 dd sysout=(*,intrdr)
//sysin dd *
edit type=include,stepname=step15
/*

Using option 1 & 2 will require the jcl to be copied to ur
personal pds and edit the jcl and pass it on to Operation
team to restart the job with the override pds

using option3 we can directly send this jcl to run without
editing the actual jcl
best way would be create a iebedit jcl in ur program
whenever the job needs to run for particular steps change
the iebedit jcl and send it to the team who will run the job

Is This Answer Correct ?    7 Yes 0 No

How do you restart a step in JCL?..

Answer / rammurthy

Without Procs.
Use RESTART=step name.

For procs:
restart = jclstepname.procstepname
jclstepname:name of the jcl step which invoke the proc.
Procstepname : the prostep which you want to restart.
eg :jcl
if we need to restart from step2 in the proc...

//job1 job restart=s1.step2
//s1 exec proc1
....

proc:
//proc1 proc
//step1 exec=...
//step2 exec=... -----Here we are going to execute
step2
//step3 exec=...

Is This Answer Correct ?    4 Yes 0 No

How do you restart a step in JCL?..

Answer / manikandesvaran

There are much ways to restart a program.

RESTART= ({* } [,checkid] )
({stepname } )
({stepname.procstepname} )

1)If the job got failed in JES2 system.this will restart the program from the beginning.

//SORTVBFL JOB SORTVBFL,(SORTVBFL),CLASS=A,MSGCLASS=A,NOTIFY=&SYSUID
Restart=Y

2)If you want to Restart a particular step in JCL.
just use RESTART=STEPNAME(i.e Step040)

3)if you want to restart a particular step in proc
Use RESTART=procstepname.STEPNAME

*****************JCL*************************************
//SORTVBFL JOB SORTVBFL,(SORTVBFL),CLASS=A,MSGCLASS=A,NOTIFY=&SYSUID
//JCLLIB JCLLIB ORDER=(AAAA.BBBB.CCCC)
//JCLPROC EXEC JCLPROC
.
*****************JCL*************************************
.
****************PROC*(AAAA.BBBB.CCCC)***********************

//JCLPROC PROC

//STEP10 EXEC PGM=iefbr14
//.....
//.....
//STEP20 EXEC PGM=
//.....
//.....


if you want to restart at step020 of proc

Code RESTART=JCLPROC.Step020 on the JCL

4)//WORK JOB ,PORTER,RESTART=(*,CKPT2)
//SYSCHK DD DSNAME=CHKPT,UNIT=3330,DISP=OLD

checkid :-

Specifies the name of the checkpoint at which the system is to restart execution. This checkpoint must be in the job step specified in the first subparameter.
Omit checkid to request restart at the beginning of the specified job step.

When the name contains special characters, enclose it in apostrophes. Code each apostrophe that is part of the name as two consecutive apostrophes. For example, code CHPT'1 as 'CHPT''1'.

The JOB statement indicates that the system is to restart execution at checkpoint CKPT2 in the first job step. The SYSCHK DD statement defines the data set on which the system wrote checkpoint CKPT2.

Is This Answer Correct ?    3 Yes 0 No

How do you restart a step in JCL?..

Answer / xxx

RESTART=TRANSFORM.STEP10

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More JCL Interview Questions

a input file contains 1000 records, how to move the first 500 record into one out put file and how to move to second 500 records to anothere output file

6 Answers   ITC Infotech,


What are the common jcl syntax errors you get? This is not abends?

1 Answers  


How can a job send a status message to a tso user at the completion of a job?

1 Answers  


what is the COND=EVEN ? Can anyone give me an example to explain the usage.

2 Answers  


In sms datasets, what is the function of the dd avgrec keyword?

0 Answers  


ihave ten flatfile in that iwant to concatinate all the files except file 5,6 into output file by uing jcl? how to do this? give me detail yntax for tis?

4 Answers   IBM,


Is it possiable to use a gdg in the INCLUDE statement in a SORT jcl? I am using this because I want to change the condition with out changing the jcl. Please provide with a sample code.

1 Answers  


how can we merge two input files from two different jobs into one output file ? Please ans any one ASAP?

1 Answers  


How to resolve the error "WER488A JOIN CAPACITY EXCEEDED" I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem? I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem?

1 Answers  


How is a GDG base created?

5 Answers  


Can you execute a PROC from another PROC?

8 Answers   Keane India Ltd,


How to Enter The Spool Area In Real Time?

7 Answers   IBM,


Categories