how to create temporary data set in jcl? what is the use?
Answer Posted / dhasani
dsn=&&dsname or By not giving data set name.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Which mode is used to operate the sequential file?
Name the sections present in data division.
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
What are the pertinent COBOL
A table has two indexes defined. Which one will be used by the SEARCH?
What is static and dynamic call in cobol?
Can we change the password using ALTER? anyone tried and changed?
explain sorting techniques in cobol program?
What is the difference between comp and comp-3 usage?
Why occurs cannot be used in 01 level in COBOL?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
What is the usage of comp fields in cobol?
What is length is cobol?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?