What is DISP= (NEW,PASS,DELETE)?
Answers were Sorted based on User's Feedback
Answer / guest
This is a new file and create it, if the step terminates
normally, pass it to the subsequent steps and if step
abends, delete it. This dataset will not exist beyond the JCL.
| Is This Answer Correct ? | 47 Yes | 5 No |
Answer / suresh
we use disp = (new,pass,delete) to create temporary data sets.
new is creates a new data set
pass on sucessful execution passes the datta set
delete it deletes the data setfrom the system
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / vamsi
Ued for identified the status a data set.
EX:DISP=SHR
IT TELLS DATA SET IS OLD(ALREADY CREATED ) BUT USING IN
SHARE MODE.
| Is This Answer Correct ? | 1 Yes | 10 No |
Explain the function of //cntl statement?
What does IEBGENER do?
How to point my proc to production dataset always though i keep jcllib order=development.dataset? Is it possible?
what is the difference between return code and maxcc?
How is a type of file defined in the jcl that executes the cobol program?
What is a S0C4 error ?
How to identify in JCL that an input file is empty without reading it?
How do you send the output of a COBOL program to a member of a PDS?
Can an individual step be restricted from using all the jobs allowed cpu time?
How to read records in reverse order in flat file?
How can values be passed from the job stream to an executable program?
A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)