Answer Posted / sri
Insufficient disk space
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain about LMFREE�free data set from its association with data ID
List the different jcl statements that are not permitted in the procedures?
How to pass data to a program that is coded in an exec statement?
What are the jcl procedures?
what sort card you will use to copy the data from one dataset to another dataset?
what are JCLLIB and STEPLIB in JCL?
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you
Are there any set of rules for the names of the steps used in a job?
what are the various stages of job processing?
by using cond parameter maximum 8 cond can be coded in single cond means ?explain
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
How do you create a temporary dataset?
how can you check if a file is empty using jcl?
//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 dd parameters are required?