in step1 of a jcl,disp=(mod,delete,delete)
step02 exec pgm=ccc,cond=(0,le)
will step02 be executed?
i)never
ii)always
iii)
iv)...
i dont remember options
Answers were Sorted based on User's Feedback
Answer / y@$w@nth
disp=(mod,delete,delete)
will tells that if the file is not previously created create
it if it is already created then use that file.
the two delete statements will tell that delete the file
after norml and abnormal termination.
step02 exec pgm=ccc,cond=(0,le)
Here step02 was coded as condition code which always falls
to true so this step wont execute in any situation......
| Is This Answer Correct ? | 26 Yes | 0 No |
Answer / vinay sonar
Step2 will not execute because always true condition is
coded in step2.
condition code(cc) 0 will be always less than any previous
step cc say 0,4,8,4095 etc. so condition is always true.So
step2 wont execute
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sowmya
step2 will be executed.the steps after the step2 will be by-
passed
| Is This Answer Correct ? | 1 Yes | 9 No |
I have 15 flat files. each record in the files have the monthly salary for 12 months with the employee number. Now I want to concatenate the 15 files such that for the employee numbers that are common the o/p file should have only one record and the salaries should be concatenated to that record. How can we do it with JCL?
What is the difference between sb37,se37,sd37 each?
in ways data can be passed to a COBOL program from JCL?
How to submit jcl through a cobol program?
For how long a job can be executed continuously in a mainframe ?
How do you skip a particular step in a proc/JOB?
what is DSN in JCL and what are the parameters to declare the DSN?
What is SORT ? How do we eliminate duplicate records ? How do I select some records using SORT ?
One of My Job is running in production, which contains five steps?i want to pass the input to FIFTH step while running is it possible? if how?
what are the technical terms for // /* in jcl
how to set dependancy for jobs?
once we submitted the job to the operating system, how can we cancel the job before execution?