if my GDG limit has been kept as 50 and if am trying to put
60 records.what would happen. will there be any abend for
this scenario

Answer Posted / muttaiah

Guys,
Just understand the question and then answer accordingly.

He is creating the GDG base which can hold upto 50
generations. And he is trying to put 60 records in it.
Is there any relation between generation and number or
records?

@Poster:
Limit-50 indicates we can create 50 type of same files
Records- 60, you can put 'n' number of records in this 50
files until there is a space abend.

Hope this is clear.

Is This Answer Correct ?    7 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How does jcl act on code(if you take a cobol program)?

709


Explain the function of //jcllib statement?

708


how you can access an uncataloged dataset in a JCL?

656


when can a job time-out occur? How to overcome that?

753


what EXEC statement is and what is the syntax of EXEC statement used in JCL?

631






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

1039


How to execute 2nd and 4th steps among 5 steps in jcl proc?

747


What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?

649


What is the significance of addrspc parameter in the exec statement?

620


How can the attributes of one sms dataset be copied to another dataset?

856


What is timing concept in mainframe?

1662


For what purpose steplib and joblib are used ?

688


Explain the jcl exec statement?

649


why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.

1950


How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?

2172