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 |
If I update one or more members in a pds in the step 1, how can I reach these new contents to be used in the step 2 of the same job? To start a new job via intrdr is not satisfactory, because I must solve this problem in one job.
I have an job having three job steps.Suppose i want to call a pgm in step2 and aproc in step3.How to write the code?
difference between internal sort and external sort
what is the difference between JES3 and JES2?
Brief description of inline procedure of jcl.
Max. No of DD statements in a job ?
What does the statements: typrun=scan and typrun=hold do in a JCL statement
wht is sysudump n sysout,sysprint ?
I HAVE A SEQUENTIAL FILE CONTAINING ONE RECORD IN WHICH I HAVE ONE FIELD AS CUSTOMER IDENTITY NUMBER FIELD WHICH IS A SIGNED FIELD. HOW TO SEQUENTIALLY INCREMENT THIS FIELD USING OVERLAY PARAMETER?.
if we compile the cobol+ db2 program now ofter 5 years we need to compile again?
If i have defined an temperory dataset in step2, how can i call back or use the same dataset in step5 of the same job
I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.