is it possible to submitt more than one job in job card in
jcl? and if yes than is it necessary to have the jobs same
name?
Answers were Sorted based on User's Feedback
Answer / suresh
We can submit more than one job from single JCL by giving
multiple job cards in the JCL.
Its not necessary to have the same job name for all the
jobs. If all the jobs have the same job name, then the
jobs will be in queue to finish one by one.
Please let me know, if you are exepecting something
different.
Is This Answer Correct ? | 23 Yes | 3 No |
Answer / shail
we can submitt more then one job in a sigle job card, and
the job name will be diffrent (this is mandatory)
Is This Answer Correct ? | 10 Yes | 6 No |
Answer / muttaiah
1. There can be only 1 job in a jobcard.
2. There can be multiple jobs in the JCL(Job stream, I mean
the file-PS/PDS in which you have your jcl)
3. Say when you submit the JCL with 2 jobs, jobs will be
submitted, The job having class & priority as higher will
execute first. well let me give you an example.
JOBA(Jobname1) - Class(A), Priority(10)
JOBB(Jobname2) - Class(A), Priority(12)
In this case, JOBB will run first instead of jobA since
priority is higher.
Say you want to run JOBB only after the execution of JOBA
then make the job name same as JOBA
Change Jobname2 as Jobname1 and submit the jcl.
JOBB will run only after JOBA.
Hope your understand
Is This Answer Correct ? | 2 Yes | 0 No |
when we submit job or jobs ....jobs get different classes..
if job name is same output would be unpredictable coz MVS
can run any of the job..once job is executed MVS is not
going to execute another job with the same name.
so the jobs with the same name will be executed but output
will be unprectable.
Is This Answer Correct ? | 3 Yes | 5 No |
What are the maximum and minimum sizes of any CONTROL AREA (VSAM datasets) ?
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?
i want to avoid the positional parameter how to code it ?
Why we will create load module in PDS only, Why nt in PS?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
what is inrec fields and outrec fields in sorting
Explain about LMMFIND - find a library member
I had 100 steps in jcl i want to execute first 10 steps only?
how to resolve soc-7 ? please tell me
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
I have two input SORTIN files and We need to create one SORTOUT file which contains data of both input files. What is the SortCard for this?. Suppose the length of the both files are different, then How we do it? Please reply ASAP
Explain how can return codes be tested before execution of a job step?