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 |
what is DSN in JCL and what are the parameters to declare the DSN?
can u explain gdg with example wht happens if we give limit,empty,noempty,scartch and no scartch
Is it possible to take a PDS and write it to a GDG? If so, can you provide an example? Thanx
Describe the DD statement, its meaning, syntax and keywords?
is there any possibilities for sumbitting more than one job in single jcl? if yes...based on which thing they will execute..(priority,class,time,written order..?)
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
IN MY JCL I VE 8 STEPS I WANT TO EXCUTE STEP 8 FIRST THEN EXCUTE STEP 4 ,HOW WILL EXCUTE STEP 8 BEFORE STEP 4?
7 Answers Cognizant, IBM, IGT,
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
What is job control language?
what is static and dynamic call with examples?
what is alternate index?
List some valid operation codes in JCL