how to create temporary data set in jcl? what is the use?

Answers were Sorted based on User's Feedback



how to create temporary data set in jcl? what is the use?..

Answer / dhasani

dsn=&&dsname or By not giving data set name.

Is This Answer Correct ?    6 Yes 1 No

how to create temporary data set in jcl? what is the use?..

Answer / nisha

1.when no DSN is given the system automatically allocates temp data.
2.when DSN=NULLFILE is specified
3.DSN=&&temp
use:
the temp data uses space only during its execution
so, wastage of space can be avoided

Is This Answer Correct ?    3 Yes 2 No

how to create temporary data set in jcl? what is the use?..

Answer / guest

by using the symbolic parameter we can create temporary data
set.the temporary dataset is used for storing the sorted
records before it store into the output file..

Is This Answer Correct ?    4 Yes 4 No

Post New Answer

More COBOL Interview Questions

What does the initialize statement do ?

2 Answers  


I HAVE FOLLOWING DECLARATION. 02. A PIC X(10) VALUE 'XXXXXXXXXX'. 02. B REDEFINES A. 05. C PIC X(3). 05. D PIC X(3). 05. E PIC 9(3). IN MY PROG, I HAVE MOVE 1 TO E. DISPLAY A. WHAT WILL BE DISPLAYED AS A RESULT OF THIS? PLEASE EXPLAIN THE ANSWER. THANKS.

7 Answers   Amdocs,


I want to declare a field with data type Double in my COBOL program. how shall i do that ?

5 Answers  


what is label record is standard or omitted in file description of data division?

3 Answers   IBM, TCS,


How many bytes do a s9 (7) comp-3 field occupy?

1 Answers  






What is the difference between index and subscript?

5 Answers   Visa,


can we print comp 3 stmts how ?

3 Answers   Accenture, TCS,


How do you define a table/array in COBOL?

5 Answers   Hexaware,


What is the Purpose of POINTER Phrase in STRING command

3 Answers  


we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?

1 Answers  


What is the default value of DISP for temp datasets

5 Answers   IBM,


What is the Linkage section? What is the Use and Why the parm length use alway "PARM-LENGTH PIC S9(4) or PIC S9 (4) COMP." any reason?.Please let me know any one... Cheers,Prasad

8 Answers   Syntel,


Categories