if we give two job cards in a single what happens
Answers were Sorted based on User's Feedback
Answer / sesha
If we give two job cards in a single dataset, both the jobs
will be submitted for exection. it's like we are submitting
jobs seperately.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / suresh
if we give two job cards in a single dataset,the job will
execute based on priority
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / rikdeb
consider this scenerio.
#xxxxx1 JOB (9999,0206,3),CLASS=X,
MSGCLASS=X,NOTIFY=&SYSUID,
TIME=(0,20)
*
#xxxxx2 JOB (9999,0206,3),CLASS=X,
MSGCLASS=X,NOTIFY=&SYSUID,
TIME=(0,20)
while prepping the jcl u will get a erro saying:
job xxxxx1 has no steps.
| Is This Answer Correct ? | 3 Yes | 0 No |
THERE IS ONE STEP AS BELOW: //STEPJS060 EXEC PGM=XYX, COND=((200,EQ,JS010),(0,NE,JS020.C),EVEN) COULD ANY ONE EXPLAIN HOW COND PARAMETER WORKS HERE? I AM CONFUSED BECOZ OF "EVEN".
what is use of dcb parameter in dd statement?
What is the difference between run mode and addressing mode?
Can a temporary dataset be converted to permanent dataset and vice-versa in the middle of a job ?
How to create delta file using JCL
i want to see the jobs in skeleton queue in diff region. (eg. 7 regions are running means , i want to see all the jobs in 7 regions which are in skel queue using 1 command)
when does a dataset go uncataloged?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
How many positional parameters are there in job statement?
What is the use of the utility DFSRRC00 in the JCL?
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.