How can we see data in TEMPARARY DATA SET in JCL ?
Answer Posted / harsha
Yes, we can read data from Temporary dataset as long as job
is running. Once the job is executed, temporary datet is
deleted.
Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is concatenating?
What do you understand by jcl?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
What do you understand by the terms: joblib and steplib?
How to alter the parameters for the existing gdg?
What are the difference between jcl and jes?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
State the uses of syspring, sysin, sort fields, sum fields and dummy.
Name the statement which can be used to send data to another mvs jes3 node?
what is use of dcb parameter in dd statement?
How can the disposition of sysout datasets be set for an entire jobstream?
Explain the function of a dd statement?
what are the statements that are not valid to be included in an include statement?
how you can access an uncataloged dataset in a 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 /*