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



in production region 100 steps are running,but i need to run only step5 without changing code how ..

Answer / kiran

U can use IebEdit utility

Is This Answer Correct ?    10 Yes 0 No

in production region 100 steps are running,but i need to run only step5 without changing code how ..

Answer / gangireddy

//sysin dd *
edit type=include, stepnmae=(step5)
/*
//

Is This Answer Correct ?    6 Yes 1 No

in production region 100 steps are running,but i need to run only step5 without changing code how ..

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

in production region 100 steps are running,but i need to run only step5 without changing code how ..

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

Post New Answer

More JCL Interview Questions

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 ?

7 Answers   IBM,


Explain about CBL/PROCESS statement syntax

1 Answers  


consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above

1 Answers  


How do you restart a PROC from a particular step?

5 Answers  


how can the same proc be re-used and called by many jobs?

0 Answers   IBM,






If a JOBSTEP abends, AND without using COND also, all the subsequent steps execute, then what is the use of using EVEN ? Why do we use EVEN when without it also all the JOBSTEPs execute ?

2 Answers   IBM,


Hi, all Suppose i have 10 step in a job (s1,s2,s3,...s10) i want to execute step9 first and then step3 and i used the DPRTY for these steps. so what will happen to other steps? Will the get executed or only these two steps get executed?

2 Answers  


I've one sequential file, That file contains millians of Junk & CHAR recoreds example File 1 ,,,,,...,,,.....,.,.INFOSYS.....,,,,,,,,,,,WIPRO..........., ,...,..,. My questions is : I want omit the 44th posstion to 4 CHAR (WIPRO) remaining things I want output file (including Junk CHAR also)... How can we slove this problem & give me a syntax. Please provide the result as soon as possible.

5 Answers   CTS,


What are the parameter in the job card wihtout which job won't run........

10 Answers   IBM,


For how long a job can be executed continuously in a mainframe ?

4 Answers  


what is JCL?

0 Answers  


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

0 Answers  


Categories