How to execute only th 15th step of JCL consisting of 50 steps?
Answer Posted / paray2x
One option is to use RESTART=STEP15 and insert a null JCL
before it.
Otherwise, determine what condition code STEP15 will
return. If it will return 0, then code RESTART=STEP15 and
COND=(0,EQ) on the job card itself.
The COND will apply to all steps. Since STEP15 has no
previous step when restarting, COND will be ignored for
this step. Then, other steps will flush because of the COND
parameter.
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
what is use of disp parameter in dd statement?
What do you understand by the terms: joblib and steplib?
how to run batch program without jcl?
I had Records in file Like this Company Code IBM 2 IBM 1 IBM 4 WIPRO 3 WIPRO 2 WIPRO 9 TCS 4 TCS 6 TCS 3 i want the record of every company with highest code How can i do that?
What is the function of //cntl statement?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
which parameter is use to declare the name of dataset in dd statement?
Explain how can the attributes of one sms dataset be copied to another dataset?
How dummy is used in jcl?
what is use of dsn parameter in dd statement?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
Are there any set of rules for the names of the steps used in a job? What are they?
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?
What happens if both JOBLIB & STEPLIB is specified ?
is there any way to execute more than one proc in the same exec statement at the same time..?