What is the default value of DISP for temp datasets
Answers were Sorted based on User's Feedback
Answer / sampath kumar
in the above answer is not correct...
disp=(new,pass,delete) and dsn=&&temp...it is correct answer..
| Is This Answer Correct ? | 32 Yes | 4 No |
Answer / pradeep kumar
for DSN=&&TEMP,
i) If the uasge of temporary file is within the step, then
DISP=(NEW,DELETE,DELETE) can be used
ii) If the usage of the temporary file is passed to its
next step, then DISP=(NEW,PASS,DELETE) can be used.
| Is This Answer Correct ? | 5 Yes | 0 No |
If my file contains 100,000 records and job abended at 55,000th records processing then how can i restart job from that record onward by ignoring that record. I can not edit the file as file size is big and it is getting browse substituted?
What is the difference between comp and comp-3 usage? Explain other COBOL usage?s.
With in these three which one is the default one Call Reference, Call By Value, Call By Content.-Which one is default?
What are the functions like c or c++ in cobol?
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.
I have dataset DS1 which has records say 1 2 3 4 5 ... ... etc And also I have second dataset DS2 whcih has records 1 3 4 5 6 8 .. ... Both the files are sorted and now I want to compare these files and write it into the third files if the records are matching.
How to find whether a Flat file is empty or not without Reading a file in COBOL Program. (not using JCL)
what is ASRA, AEY9?
Name the sections present in data division.
What is Alternate Index ? How is it different from regular index ?
Can anyone please give the example of Inline Perform.
what is the difference between implicit and explicit scope terminator with example?