in production region 100 steps are running,but i need to
run only step5 without changing code how can i do it?
Answers were Sorted based on User's Feedback
Answer / gangireddy
//sysin dd *
edit type=include, stepnmae=(step5)
/*
//
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / prasad raju
Below example codeing for 10 steps job,For example, how to
execute step4 and step9 of 10 steps JCL,
//M665235C JOB (MVSQuest),'IEBEDIT TEST',
// CLASS=B,MSGCLASS=X,NOTIFY=V665235,REGION=28M
//*
//SUBMIT EXEC PGM=IEBEDIT
//SYSUT1 DD DSN=TEST.MUTHU.JCL(JCLINP),DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
EDIT START=M665235C,TYPE=INCLUDE,STEPNAME=
(STEP0004,STEP0009)
//*
In the above JCL, JCLINP is the 10 steps JCL. M665235C is
the job-name in the JCL.
If TYPE is exclude, then the mentioned steps will not be
copied/submitted.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / anil
yes it is correct that we can use iebedit utility by using
internal reader init
| Is This Answer Correct ? | 1 Yes | 1 No |
which parameter is used to check the syntax of a jcl without executing it?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
Explain about LMMFIND - find a library member
What is the meaning of keyword in JCL? What is its opposite?
What statement marks the end of an in-stream or catalogued procedure?
How do you create a temporary dataset? Where will you use them?
What is DYNAMBR in jcl?
Can I concatenate various datasets whose organization are different from each other. Lets say I want to cancatenate a PDS file, a PS file, a GDG file etc. Can You do that ?? If yes, how ? is there any separate Utility to do so ???
How can u know the current date using jcl?
how to skip the steps in JCl
What is QSAM error usually when it is occurs?
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 pgm opens the file in EXTEND mode. What happens ?