what do you mean by include statement in jcl?
Answer / prabhat kumar
Include statement is used with sort utility to specify the conditions on which the records should be filtered.
Eg:
//sysin dd *
Sort fields = copy
Include cond=(1,5,CH’PRABHU’,A)
/*
Include is also used with IEBEDIT utility
to specify the steps need to be run or other conditions.
Eg:
//step0010 exec pgm= IEBEDIT
.
.
.
//sysin dd *
EDIT TYPE=INCLUDE
STEPNAME=(STEP0005,STEP0015,….)
/*
| Is This Answer Correct ? | 0 Yes | 0 No |
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
Explain how can an in-stream dataset be terminated?
What are the basic JCL Statements for a Job?
What is the purpose of dd dummy statement?
Are there any set of rules for the names of the steps used in a job? What are they?
What methodology can be adapted to transfer data to a program that is coded using the exec statement?
Whats error code s222?
Can you delete the GDG base without deleting GDG generations ?
1.How to check for the errors using TYPRUN=SCAN?What will be the output if we give TYPRUN=SCAN?
How many extents are possible for a sequential file ? For a VSAM file ?
What all are the changes to be made in JCL so as to do testing?
Suppose i have 2 steps in my pgm. Step1- creates a file, Step2 - generates report from file in step1, What changes have to be made in Step2, so that if the file in Step1 is empty Step2 should not be executed? No changes to be made to Step1.