What is diff between vsam and db2?what is advantage of db2
over vsam?which is best suited one?
Answer / artee
1) DB2 is a true database management system, VSAM is just a file access method.
2) The ability to use SQL and the flexibility it gives an application programmer in manipulating data.
| Is This Answer Correct ? | 0 Yes | 0 No |
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
what is the use of keep and pass in disp
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
What is length is cobol?
Describe the cobol database components?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
Can we use icetool in cobol program?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
should I use Go back in the main program ? Yes we can use Go back in main program as well.
What is the meaning of 'TALLING' verb 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.
suppose a cobol programme A calling programme B,C and D. If C undergoes some change what if A,B,C,D need to be recompiled or only C nee to be recompliled.