how we can edit records in vsam data set and non vsam data
sets
Answers were Sorted based on User's Feedback
Answer / vikas pujar
VSAM - You cannot edit data directly in case of Vsam
datasets,it can be done either be thru programs or thru
File Aid option 2.
Non Vsam - You can edit data directly by opening dataset in
edit mode from 3.4.
| Is This Answer Correct ? | 14 Yes | 1 No |
Answer / vidhya
u can open the VASM dataset in File aid and edit.
| Is This Answer Correct ? | 6 Yes | 2 No |
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?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
What is the difference between Structured COBOL Programming and Object Oriented COBOL ?
What is reference modification? What is UNION in sql and syntax? What is the difference between GDGS and VSAM? Which is prefer one? What is processing groups in endevor?
BY seeing a program how can we say that it is static call or dynamic call
What guidelines should be followed to write a structured Cobol program?
Wat is the difference between NEXT and CONTINUE statement in cobol,can any one explain with example.
What is report-item in COBOL?
If we put three reads in COBOL in the same para one after the other, to read a PS file,will it read the same record thrice or it will read three records sequentially? For example : Input File 01 02 03 Para 900 Read infile Display Infile rec Read infile Display infile rec Read infile Display infile rec. What will be the output?
If there are two files one with 100 records and other with 101 records. we have to find out the one record that is the odd man out . What are the steps to do it
Define in-line perform?
what is the result of the following? DIVIDE A INTO B GIVING C. a.C=A/B b.the reminder of B/A is stored in C c.C=B/A d.the reminder of A/B is stored in C