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 |
Suppose i want to declare a binary comp fild of 7 byte .how to write?
Will the variable POS in the following code have a value of 2 or not? 01 POS PIC S9(4) COMP VALUE 2. 01 FIRST-NAME PIC X(10) VALUE 'ABC'. 01 LAST-NAME PIC X(10) VALUE 'XYZ'. 01 NAME PIC X(20) VALUE SPACES. STRING FIRST-NAME DELIMITED BY SPACES ' ' DELIMITED BY SIZE LAST-NAME DELIMITED BY SPACES INTO NAME WITH POINTER POS
What is Control Break processing ?
TYPES OF SORTINGS. which is more prefarable.
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.
copy 100 records without using ibm utilities
What is the difference between write & move in COBOL?
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
What are the different data types in cobol?
SSRange is used to do a range check on which of the Following. SUBSCRIPT,INDEX,REFERENCE MODIFICATION,Run-time option.
What is an in line PERFORM? When would you use it? Anything else to say about it?
i have the job which has written updated 100 records into the table and for 101th record it got abended and i want to start the job again and should wirte from 101th record not from 1st record..how to do it..?