is there any possibilities for sumbitting more than one
job in single jcl? if yes...based on which thing they will
execute..(priority,class,time,written order..?)

Answers were Sorted based on User's Feedback



is there any possibilities for sumbitting more than one job in single jcl? if yes...based on whic..

Answer / mohan.chepuri

yes
first class wil check out the system it is higher priority
that job is exec first
if 2 or more jobs class is equal the checks the priority is
0-9 then hight priority is run first
time it is used to save the amount to cmpnys our job is
going to loop the job is running no of times then use time
limited time is given

Is This Answer Correct ?    4 Yes 0 No

is there any possibilities for sumbitting more than one job in single jcl? if yes...based on whic..

Answer / quasar chunawala

Well, you can use the Special Writer - INTRDR that takes
whatever is there in the Output Queue, and puts it back in
the Input Queue. Here's ow to do it -

//AGY0157A JOB A123,'BIN-7 QUASAR',CLASS=A,NOTIFY=&SYSUID
//STEP010 EXEC PGM=IEBGENER
//SYSUT1 DD DSN=AGY0157.HIDDEN.JCL,DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSIN DD DUMMY
//SYSPRINT DD SYSOUT=*

AGY0157.HIDDEN.JCL Dataset can contain the second job -
//AGY0157B JOB A123,'BIN-7 QUASAR',CLASS=A,NOTIFY=&SYSUID
//STEP020 EXEC PGM=IEFBR14

Is This Answer Correct ?    2 Yes 0 No

is there any possibilities for sumbitting more than one job in single jcl? if yes...based on whic..

Answer / mohan.chepuri

yes
first class wil check out the system it is higher priority
that job is exec first
if 2 or more jobs class is equal the checks the priority is
0-9 then hight priority is run first
time it is used to save the amount to cmpnys our job is
going to loop the job is running no of times then use time
limited time is given

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More JCL Interview Questions

in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?

0 Answers   IBM,


Explain the purpose of dd dummy statement?

0 Answers  


have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file

0 Answers  


wht happens if blksize = 0 and lrec = 0 ?

1 Answers   TCS,


in a series of 10 steps, i need to run only 1,3,5,7 & 9th steps only. how do u code?

5 Answers   ADP,






What parameter directs the output of the job log dataset?

0 Answers  


Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?

0 Answers   CGI, Verizon,


I have 3 duplicate records in a file . I want to eliminate 1st, 2nd and copy 3rd one only . HOW ?

3 Answers   CTS, DELL,


How many steps we can overide in the proc's?

2 Answers   CS,


how can handle the s0c4 abend???

3 Answers  


What is the purpose of disp parameter?

0 Answers  


How To get the last record in VSAM file in cluster? and How can u get the ksds file records into ur cobol program ? Pls tell me about these two questions.

1 Answers   Cap Gemini,


Categories