Are all (i), (ii), (iii), (iv) of the below are VALID to
reference a temporary dataset ?
STEP2
DD1 DD DSN = &&TEMP
STEP3
DD2 DD (i) DSN = TEMP
(ii) DSN = *.TEMP
(iii) DSN = *.STEP1.DD1
(iv) DSN = *.STEP1.DD1.ONE
Answer Posted / pintokott
2 Rikdeb: (ii) DSN=*.TEMP IS INCORRECT.
Alas.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?
How can values be passed from the job stream to an executable program?
//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 parameter is use to declare the name of dataset in dd statement?
Explain how can the disposition of sysout datasets be set for an entire jobstream?
when can a job time-out occur? How to overcome that?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
what is use of disp parameter in dd statement?
What are the difference between jcl and jes?
what is the use of IEBGENER utility?
Explain the jcl exec statement?
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 ?
write a jcl to execute a job by 7:00 am on jan 20,1986?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
Why block size is multiple of lrecl in jcl?