I have a JCL with 10 steps, want to execute first 5 steps
only, what are ways of doing it?is it possible to control
through JOB card?
Answer Posted / kaarthik
USE IEBEDIT utility to just execute the steps you want to
execute in it.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
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 /*
What do you know about jcl?
Explain how can the submitting users racf authority be overridden in a job stream?
When output dataset space is required, what quantity categories are used?
Give the syntax of job specifying jcl statement.
Suppose I have five jobs to do. But I want to hold one?
How does jcl act on a cobol code?
What is one line to pass PARM from JCL to COBOL?
In job processing, what happens in execution stage?
how do you access an uncataloged dataset in a jcl?
whats the diff bw the evaluate also and and?
How would you understand error(execution phase)?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
Explain how can the attributes of one sms dataset be copied to another dataset?