can we have more than one job in a single job card that is
we are specifying only one 'job' statement in the jcl.
Answers were Sorted based on User's Feedback
Answer / mvrams
The Answer is Yes. We can have multiple jobs in the same
PDS member. For example my pds member is mvrams.jcl(myjobs)
The memeber my jobs can have multiple job cards coded like
this.
MYJOB1 JOB (GNAC-TSO-T),'COPY JOB',CLASS=P,MSGCLASS=5
......................
.......................
/*
MYJOB2 JOB (GNAC-TSO-T),'COPY JOB',CLASS=P,MSGCLASS=5
.......................
.......................
Generally we dont do this in model/prod environment,
because in CA7 scheduler we can only get the notification
for one job ( in one PDS member )
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / premil
NO... v can have many steps in one JOB... but not many
JOS'S..
| Is This Answer Correct ? | 16 Yes | 11 No |
Answer / reddy kanupuru
we can have more than one job in a job card .after the
first job give /* after that code another job and so on.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / bhanuprathap
Yes, we have many steps Under one Job but not many Jobs in
one step.....
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / amresh
JOB Statement is the one that identifies the job. I dnt
understand the meaning of more than one JOBs under one JOBCARD..
| Is This Answer Correct ? | 0 Yes | 1 No |
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
suppose i have job it contains 10 steps after exicution of job failuer at 3 and 7 th steps i want exicute step 3 and step 7 only how we specify condition ?
How to find in aparticular step how many versions a paricular gdg base have?
I have 2 steps in my exec statement , in first step I am creating a gdg, and the output of this step is going into second step as a input, and this second step is abended , now how could i approach in this case.
What you mean by skeleton JCl?
Give the syntax of job specifying jcl statement.
how to run batch program without jcl?
what is static and dynamic call with examples?
How to concatenate different LRECL of files?
What is the difference between static call & Dynamic call ?
What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?
In your JCL, run the even numbered steps if date is even and run odd numbered steps if date is odd . Where do you generate the date ??in cobol or JCL ??