What is RESTART? How is it invoked?
Answers were Sorted based on User's Feedback
Answer / guest
RESTART is a JOB statement keyword. It is used to restart
the job at a specified step rather than at the beginning.
| Is This Answer Correct ? | 27 Yes | 1 No |
Answer / devang
The restart parameter is usually referred as RD(restart
definition) in JCL.
I can be coded on any job steps with conditions like
RD=RNC(restart with no check point)
RD=R(restart)
RD=NC (no checkpoint)etc
Stratigically placing of RD parameters is a task which
requires extensive analysis of the JCL flow.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / vimal raj
you can restart your job from a particular step that u may
need. instead of running ur whole job. like uncommenting out
the step in the job card statement.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / satyasivaji
Yes RESTART is the JOB parameter,if incase due to any of
the reason your job is abended,and if you want that job to
be execute and not from the beging,that is where it is gets
abeded from that step onwards,there your using RESTART
parameter.
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / psreddy
RESTART parameter is used in job card to restart the job
from particular step IF THERE IS NO DEPENDENCIES.
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / brian
Also if you are restarting from a particular step that
executes a module that processes a high volume of data you
will have to work out key values for picking up where you
left off say for sequential files. It gets even more
complicated with relational datbase processing like DB2 and
COMMIT points.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / suresh
we have 10 steps in job in that i want to excute first
step2 in this case we can use restart parameter
restart=stapename,this will start from step2 insted step1.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / prince. k.
restart is to begin a job from the normal posion of the job
for exaple there was a proble durig my job time and i need
to restart again so that the job will be normal
| Is This Answer Correct ? | 0 Yes | 1 No |
How to send different PARM values based on the any condition to the program in a JCL? For example :- If the time is before 12:00 pm, I want to send "A" to some program and if it past 12:00 pm , I want to send "B" as a PARM value to that program. How to do it thur JCL only?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
How jcl is used for testing batch programs?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
HOw to submit a job from other user id.? for exp some other job name like "t4622sdx".now i want to submit that job from my user id?(we don't know that location at all Just we know job name)
Which statement is used to identify the private libraries in job?
oza017.myorg.emp has 100 records ,oza018.myorg.staff has 200 records but 50 are the common records in both files copy all the common records into oza017.myorg.xyz dataset
What is the difference between a PDS member and a GDG Generation ? Is it only this, that with a generation we can use +1, 0, -1 etc while with PDS member we can not ?
by using cond parameter maximum 8 cond can be coded in single cond means ?explain
i have a base gdg consisting of 12 versions like jan to dec. i need to concatante this gdg to another gdg which have version 1 or to the base gdg itself can anyone give me the code pls ?
List the various advantages of using jcl language?
We are using 2 files , file one has data, file two is empty.Using jcl how can we find the other file is empty?