what is use of space parameter in dd statement?
Explain the purpose of dd dummy statement?
IN DFSORT sum fields=none is usec to remove duplicates.how to write the duplicates in another dataset?
//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 /*
Which storage devices are grouped under DASD and SYSDA ?
Name the system library from which modules are retrieved at execution
There are 5 steps in a Job. How to bypass the first step by making use of only COND Parameter and not using any Restart and IF/THEN/ELSE parameter?
What is primary allocation for a dataset?
Can we use COND=EVEN on a job card, when jobs are scheduled through scheduler?
How is a GDG base created?
i have 5 steps to execute in that i want to skip 3nd step and start execute from forth step how can u do this.
Can we find specific member without knowing the name of PDS or can we search a member to which PDS it belongs to? if so how?
A STEP has more than 1 file as INPUT. And we have to put all these records int 1 output file. How to do ? //InputF DD DSN=ID.File1 DSN=ID.File2 DSN=ID.File3