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...


i have 10 steps in jcl program but i have to exicute only
2,4,6,8th and 10th ?how it's possible?

Answers were Sorted based on User's Feedback



i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possib..

Answer / amarnath reddy

Hi,

It is possible to execute selected steps. Use IEBEDIT
utility we can execute selected steps.

Ex: //xcon39ac dob (p54I9k),'amarnath',class=x,....
//JS05 exec pgm=IEBEDIT
//.
.
.
//SYSIN DD *
EDIT TYPE=INCLUDE,
STEPNAME=(STEP2,STEP4,STEP6,STEP8,STPE10)
/*
//

Is This Answer Correct ?    35 Yes 0 No

i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possib..

Answer / suputhru

MR Amarnath ReddY IS RIGHT.


Use IEBEDIT utility

NOTE: For not execution of steps use: EXCLUDE

Is This Answer Correct ?    5 Yes 0 No

i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possib..

Answer / raghavendra

Use Restart=step2 command in job card, then use COND=(0.LE) in steps 3,5,7,9 to skip (this cond parameter will the skip the steps only if previous steps ended with CC=0)

//Jobid job (t,aa,sys),'acct',class= , msgclass= ,region=0M,restart = step2
//*
//step1 exec
//step2 exec pgm=xxx
//step3 exec pgm=xxx,cond=(0,le)
//step4 exec
//step5 exec pgm=xxx,cond=(0,le)
//step6 exec
//step7 exec pgm=xxx,cond=(0,le)
//step8 exec
//step9 exec pgm=xxx,cond=(0,le)
//step10 exec

Is This Answer Correct ?    4 Yes 1 No

i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possib..

Answer / druks

Does the job have instream JCL or a instream proc or are the job steps in a proc (in a proclib) with a execution JCL

Is This Answer Correct ?    0 Yes 0 No

i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possib..

Answer / harshil gandhi (trainee at cog

i have 10 steps in jcl program but i have to exicute only 
2,4,6,8th and 10th ?how it's possible?
yes off course its possible..

       step1;
xx     step2;
       step3;
xx     step4;
       step5;
xx     step6;
       step7;
xx     step8;

explanation= use xx on the left side of the step or line in the command... and write (sub nx;) in the command...then it will execute only the excluded lines...thank you for reading... 

Is This Answer Correct ?    0 Yes 0 No

i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possib..

Answer / pavan

If we can edit the JCL then add a COND to the steps which you don't want to execute so that you can skip those.

Is This Answer Correct ?    5 Yes 6 No

i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possib..

Answer / sivaramakrishna

yes we can execute the above statements using cond
condition.

Is This Answer Correct ?    0 Yes 1 No

i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possib..

Answer / druks

It , depends on you having the JCL in a proc or are running it instream (simpler option) , you can delete the steps you do not require and run job'
Proc : in the EXEC JCL
Job statement put a RESTART Parm ,
in the EXEC JCL .
//stepa exec procname,cond=(1111,ne,stepxxx),cond=(1111,ne,stepxx1)
stepxxx ,stepxx1 step you want to exclude

Is This Answer Correct ?    0 Yes 5 No

i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possib..

Answer / naveen

yes its possible comment the 1,3,5,7,9 steps

Is This Answer Correct ?    3 Yes 10 No

i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possib..

Answer / mahesh

I think its not possible because , always first step need
to execute, then based on the CC of the first step,
we can specify COND whether to SKIP or Process a Step in
JCl.

Note : You cannot use Restart Parameter in the above
cases. it is used only when the Job is Abended.

Is This Answer Correct ?    1 Yes 14 No

Post New Answer

More JCL Interview Questions

how many max steps can we use in a job? pls answer to my question

3 Answers   TCS,


how you can direct the data to spool using SYSOUT option?

0 Answers  


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?

1 Answers  


Differentiate between the joblib and the steplib statements?

0 Answers  


In order to continue a job after a return code of 12 in step1, what the step2 exec statement include?

1 Answers  


What are the differences between JES2 & JES3 ?

4 Answers  


Explain the function of a dd statement?

0 Answers  


how to convert a file form fixed Length to variable length?

2 Answers   Syntel,


How to check empty file in jcl?

4 Answers   Infosys,


wht do u mean by inrec and outrec ?

1 Answers   IBM,


SORT card to eliminate duplicity.

1 Answers   Syntel,


what is the default region size if I dont specify region parametre in my job card ( I know that if I specify region=0k or 0M, then the job will occupy all he available resources at the time of job execution), but I want to know the defult value for "region" paramatre.

5 Answers   BirlaSoft, Infosys,


Categories