What 3 guidelines do we have to follow when concatenating DD
statements?
Answers were Sorted based on User's Feedback
Answer / guest
Datasets must be of the same type (disk or tape), All
datasets must have the same logical record length, The
dataset with the largest blocksize must be listed first.
Is This Answer Correct ? | 10 Yes | 2 No |
Answer / sandy lofton
1. The dataset with the largest blocksize must be listed
first.
2. If concatenated datasets are libraries and contain same
name members, the first one found will be used.
3. Order is important: Disk first, tape second, cards
third.
Is This Answer Correct ? | 5 Yes | 4 No |
Answer / muttaiah
1) The dataset should be of same type meaning if you are
concatenating a PDS then other ds should be pds only & ps-
Ps)
2) They should have same format and LRECL
3) If the dataset's have diff blocksize then the dataset
with Largest block size should be coded first
4) All the datasets should reside on the same unit(device).
however the volume serial number can differ
5) we can concatenate 16 PDS & 255 PS files
Is This Answer Correct ? | 0 Yes | 0 No |
Explain dd statement in jcl?
What is the difference between static call & Dynamic call ?
What is DSNDB06 ?
What is the syntax of JCL statement?
In all our JOB Statement we have always COND=(4,LT) defined. Nevertheless when a Job failed the last step should then be executed (send a message to an user). Due to we don't like to change all our JOB's (ca. 2000), we are looking for a simply solution.
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
What is the DD statement for a output file?
How to view the hexa decimal value thru file aid if copy book is not present for that particular data
I have 5 generations in my GDG. How do I code in the JCL to consider all the 5 versions of the GDG ?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
A chkpt is the parameter coded for multi-volume qsam datasets in a dd statement. When a chkpt is coded as chkpt=eov, a checkpoint is written to the dataset specified in the sysckeov statement at the end of each volume of the input/output multi-volume dataset. State whether true or false?
Is CPU time (TIME parameter) assigned to a JOB and JOBSTEP BOTH, by default ?