explain concatinating datasets?
Answer / ravi
In JCL , we can concatenate different files by giving their
name one after another. All data sets concated must be of
the same type. For example,
1)partitioned data sets can be concatenated only with
partitioned data sets.
2)Record format should be same
3) All the files should on same device (like DASD, Tape)
4) File having largest BLKSIZE should be mentioned first
Maximum of 255 sequential data sets can be concatenated
Maximum of 16 partitioned data sets can be concatenated
Example JCL --> //MYJOB JOB (W345),'XXX'
//STEP1 EXEC PGM=COBPROG
//INFILE DD DSN=TEST.GLOB.FILE1
// DSN=TEST.GLOB.FILE2
// DSN=TEST.GLOB.FILE3
In program , we will read it as an single file.
concatination of three files done by operating system.
| Is This Answer Correct ? | 12 Yes | 0 No |
How do you access a file that had a disposition of KEEP?
how to execute the last 5 steps in jcl
Could you provide an example and its effect OF, Using COND on JOB and EXEC both ?
Definition of COND parameter in JCL
If your job fails at particular step then what would be the return code for next steps
Is their any set of rules for dd? Explain.
What is the function of //jcllib statement?
List some valid operation codes in JCL
How to copy VSAM files without using REPRO
What is the function of job statement in jcl?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
what are the types of abends that occur on job failure? And explain the possible causes of these