Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How can we execute only one step in a job

Answers were Sorted based on User's Feedback



How can we execute only one step in a job..

Answer / sravanthi

We cannot specify COND parameter for the first step in JCL.
So if there are many steps in JCL, we need to restart the
job from the required step. A null statement at the end of
this step can be given for running this step alone. If any
other step also need sto be run, then we can go for the COND
parameter instead of the null statement

Is This Answer Correct ?    8 Yes 1 No

How can we execute only one step in a job..

Answer / mohammad

I think we have to use restart and cond parameter
at job card.i.e restart=stapname,cond(00,le).
This will execute only the step u need.

Is This Answer Correct ?    7 Yes 1 No

How can we execute only one step in a job..

Answer / suresh

Hi,

This can be achieved by two ways.
1. As Sravanthi mentioned - A null (/*) statement at the
end of this step can be given for running this step alone.

2. By using COND parameter in the second step. Like
//STEP2 EXEC PGM=EXAMPLE,COND=(0,LE,STEP1)

Is This Answer Correct ?    6 Yes 0 No

How can we execute only one step in a job..

Answer / sathishkumar

Hi,

Use cond=(0,LE) in jobcard and also specify
Restart=Stepname,the step you want to execute.

Is This Answer Correct ?    8 Yes 3 No

How can we execute only one step in a job..

Answer / ram g

Assume that job has 100 steps ... want to execute only the
step 89 then

just give the following stmt in job card..
restart = stepname, cond=(0,le)

can achieve this in multiple ways..!

Is This Answer Correct ?    5 Yes 0 No

How can we execute only one step in a job..

Answer / ankur

hi
kamal.

i know that by IEBEDIT IT can be done....

//sysin dd *
edit type=exclude, stepname=(step01)
//

but we should try with cond...

i know cond = only in first skip or flush the 1st step ..

just check it...
bye

Is This Answer Correct ?    4 Yes 0 No

How can we execute only one step in a job..

Answer / prashanth

we can...it's possible

Is This Answer Correct ?    8 Yes 5 No

How can we execute only one step in a job..

Answer / prashanth

hi, laxhmi,
we can execute only one step in a job by using
cond parameter, IEBEDIT utility program,

thanks & regards

prashanth

Is This Answer Correct ?    6 Yes 3 No

How can we execute only one step in a job..

Answer / ramu

with con parameter

Is This Answer Correct ?    4 Yes 2 No

How can we execute only one step in a job..

Answer / chaitanya

in the proc call statement, EXEC PROC, we need to use
stepname.COND=(0,LE) option

Is This Answer Correct ?    4 Yes 2 No

Post New Answer

More JCL Interview Questions

If the proc stepname is excluded while overriding the COND, TIME, REGION and PARM parameters while calling the proc, will the override only apply to the first step in the proc or all the steps for all the above parameters?

2 Answers  


describe the exec statement,its meaning ,syntax and keywords?

3 Answers  


What is the function of dd disp parameter?

0 Answers  


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  


How can values be passed from the job stream to an executable program?

0 Answers  


If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?

0 Answers  


How to Enter The Spool Area In Real Time?

7 Answers   IBM,


Can I copy the FB (fixed Block) record length file to a VB (variable Block)record length file and Vise Versa? If Yes then how ? is that thru one of the JCL utility ?

3 Answers  


How to execute step2,step5,step7 of a proc of 10 steps? You are not allowed to change in JCL.

3 Answers   IBM,


how can you check if a file is empty using jcl?

0 Answers   IBM,


i want apply mainframe devolper with 3+ but i dont have that much of knowledge what isthe solution to get that much of knoweldge?

1 Answers  


Is automatic restart possible in jcl? If yes, how?

0 Answers  


Categories