Name the system library from which modules are retrieved at
execution
Answer Posted / sagar
1234
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
What do you know about jcl?
how you can access an uncataloged dataset in a JCL?
What is the function of the dd dcb keyword?
What is timing concept in mainframe?
Explain how can values be passed from the job stream to an executable program?
Define concatenating?
Explain the purpose of dd * statement in jcl?
List in order the hierarchical levels of jcl?
What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?
what is the resolution for sb37 error
I need exexution process for JCL programs
What does it mean by Restart and Checkpoint in JCL ? How are checkpoints being taken and what is their usage ? How to use Checkpoint macro on a JOBSTEP ?
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
when does a dataset go uncataloged?
//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 /*