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


Please Help Members By Posting Answers For Below Questions

What is concatenating?

851


What do you understand by jcl?

816


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

1093


What do you understand by the terms: joblib and steplib?

856


How to alter the parameters for the existing gdg?

920


What are the difference between jcl and jes?

1295


Name the parameters which can be used to limit the number of records written to a sysout dataset?

882


State the uses of syspring, sysin, sort fields, sum fields and dummy.

840


Name the statement which can be used to send data to another mvs jes3 node?

824


what is use of dcb parameter in dd statement?

1009


How can the disposition of sysout datasets be set for an entire jobstream?

1083


Explain the function of a dd statement?

873


what are the statements that are not valid to be included in an include statement?

1083


how you can access an uncataloged dataset in a JCL?

875


//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 /*

1121