what is the use of temporary files?

Answers were Sorted based on User's Feedback



what is the use of temporary files?..

Answer / harsha

Temporary files are those files which have same
characteristics as that of any seq file. Temporary file are
created and deleted within the same JCL iteself.

Is This Answer Correct ?    9 Yes 2 No

what is the use of temporary files?..

Answer / srinivas

if we want any file for temporary purpose we will use these
files bcz we will all our work after that it will delete
there it self so we can save the memory . for this we will
write in front of the && it will indicate that this file is
temporary..

Is This Answer Correct ?    3 Yes 1 No

what is the use of temporary files?..

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

what is the use of temporary files?..

Answer / sachin

@pradeep: Please recheck your comments before posting it. It has gramatical mistakes.

Is This Answer Correct ?    0 Yes 0 No

what is the use of temporary files?..

Answer / m.s.mohamed

It temporary data are used to re collect the original data
at the time of re usability

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More JCL Interview Questions

In JCl which of this activities get executed if act002 abnormally terminates //job001 job ......... //act001 exec pgm=cobo01 //act002 exec pgm=cob02, cond=(01,le) //actoo3 exec pgm=cob03, cond=only //actoo4 exec pgm=con04

3 Answers   Patni,


What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?

0 Answers  


what is DSN parameter and DISP parameter is used for?

0 Answers  


Is their any limit for data sets?

0 Answers  


WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

0 Answers  






shall we concordinate two different length dataset in to a new date set.

6 Answers  


What is the error/SOC code if dd names are not sysut1 and sysut2 in IEBGENER?

1 Answers   CTS,


Can we create VSAM file by using IEBGENER?

4 Answers   Principal Finance,


I had Records in file Like this Company Code IBM 2 IBM 1 IBM 4 WIPRO 3 WIPRO 2 WIPRO 9 TCS 4 TCS 6 TCS 3 i want the record of every company with highest code How can i do that?

3 Answers   Wipro,


Explain the function of job statement in jcl?

0 Answers  


what are the ways of passing data to a cobol program from jcl?

1 Answers   IBM,


When we give TYPERUN = SCAN , what are the syntax errors we get?

5 Answers   Kanbay,


Categories