what modification we need to do in jcl if we use sort in
cobol? I mean whether we need to include tempary file used
for sorting in assign statement?
Answers were Sorted based on User's Feedback
Answer / guest
yes we need to include one temp file whose record size is same
as that of input file record size
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / sandhya
in jcl there is no need to assign temporary file..and we
have to create temporary file in cobol same structure as
cobol program..this temp file sort the records and output
went to output file..
| Is This Answer Correct ? | 0 Yes | 1 No |
What is the default value(s) for an initialize and what keyword allows for an override of the default?
given the following piece of code: CALL SUB-PGM USING A, B, C. CALL SUB-PGM USING A, C, C. (a) Both CALL statements will always produce same result. (d) Both CALL statements may produce different result. (c) Compile-time error because SUB-PGM is a dataname. (d) Compile-time error because A, B, C are used twice.
Can a Search can be done on a table with or without Index?
COMP?
I have one column say 'X' defined as VARCHAR Can anyone tell me What are the different ways to update this column thru COBOL-DB2 program?
Why occurs can not be used in 01 level ?
Differentiate COBOL and COBOL-II?
I have sequential file recl 1000 i want to add another 15 bytes to it. The record length should not change..How?
how many divisions are there in cobol
is this below syntax correct? CALL 'subprg' using A,B Please help
Can we move X(7) to S9(7) COMP?
can we read records in a file from botom to top. if possible how can we read