Answer Posted / pradeep k(cr)
Temporary file will create after submitting job and it will
delete after completing the job. Means temporary files will
not occupy any space.
This temporary files will create by using &&
(double amperson). Ex:&&TEMP means you are creating
temporary file by name TEMP.
Ex: if you want to sort FILE1 and after that you need to
use that file as input in your COBOL program, that time you
willl use this temporary file as SORTOUT file.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What parameter directs the output of the job log dataset?
What is the function of dd disp parameter?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
When output dataset space is required, what quantity categories are used?
what is DD statement is used in JCL?
Matching Logic in Jcl not in cobol.Could any one please answer this question
I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK
Explain in DD statement what is the use of DCB parameter?
what is the use of IEBGENER utility?
Can we use DISP=SHR in output file in JCL
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
Does jcl support automatic restart?
How is a type of file defined in the jcl that executes the cobol program?
For what purpose steplib and joblib are used ?