How to find in aparticular step how many versions a
paricular gdg base have?
Answer Posted / kavya
Use LISTC command in a IDCAMS step. It will list all the
generations.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Are there any set of rules for the names of the steps used in a job?
What is the use of disp parameter?
What is jcl in mainframe?
what is SOC4 error?
When space is allocated for an output dataset, what units can be used?
Why block size is multiple of lrecl 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?
In job processing, what happens in conversion stage?
Can an individual step be restricted from using all the jobs allowed cpu time?
Explain how can return codes be tested before execution of a job step?
Is condition checking possible in jcl?
how you can access an uncataloged dataset in a JCL?
how you will the direct the data to spool using sysout option?
How to execute 2nd and 4th steps among 5 steps in jcl proc?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*