suppose i have 10 job steps and i want to execute only step
6.How to write?
Answers were Sorted based on User's Feedback
Answer / aaki
for steps1-5 code cond=(0,LE) and after step06 put a //
(null).It will automatically stop execution when it finds a
null.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / ranjith
Use Restart=step6 in job card and at the end of step6 use //
(null statement).
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / rahul singh
code restart=step6, cond=(0,le) in job card and only step6
will be executed
| Is This Answer Correct ? | 0 Yes | 1 No |
i have a jcl in which 4 & 5 step creates a new generation. 4th step output is as input for the 6th step & 5th step output is used as input in the 7th step. How they are refered as in the 6th & 7th steps? If the job abends in 6th step then how the 5th step output is refered in 7th step?
IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the second step using the JCL, How to do it?? Please give the answer ASAP:)
What is a COND parameter in JCL?
How do you submit JCL via a Cobol program?
Could anyone please suggest me what is the maximum length of data that can be pass as input in //sysin dd * This was asked in interview. TIA
01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The DISP in the JCL is SHR and the program opens the file in EXTEND mode. What happens ?
What is the difference between catalogue procedure and In-Stream procedure?
What are the maximum and minimum sizes of any CONTROL AREA (VSAM datasets) ?
Write a JCL by using the below requirement: File1 =1, File2 =11 and output needs to come as File3 =111?
how can we merge two input files from two different jobs into one output file ? Please ans any one ASAP?
If we want to see the eliminated duplicate record thru SORT, how its output file will be managed