how to create temporary data set in jcl? what is the use?
Answers were Sorted based on User's Feedback
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 |
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 |
What does the initialize statement do ?
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.
I want to declare a field with data type Double in my COBOL program. how shall i do that ?
what is label record is standard or omitted in file description of data division?
How many bytes do a s9 (7) comp-3 field occupy?
What is the difference between index and subscript?
can we print comp 3 stmts how ?
How do you define a table/array in COBOL?
What is the Purpose of POINTER Phrase in STRING command
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
What is the default value of DISP for temp datasets
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