Hai friends
why we need to read a file before re-write a record?

Answers were Sorted based on User's Feedback



Hai friends why we need to read a file before re-write a record?..

Answer / diwakar

Without knowing what field to rewrite we cannot use rewrite
the field in a record.Thats why we read the file first and
then rewrite the same

Is This Answer Correct ?    13 Yes 0 No

Hai friends why we need to read a file before re-write a record?..

Answer / mf buzz

Hi,

For Rewrite, the file has to be opened in I-O mode. REWRITE
is used to update records. Rewrite statement will update
the last read record. Hence, we have to read the record to
be updated first. Hope this clarifies.

Is This Answer Correct ?    4 Yes 0 No

Hai friends why we need to read a file before re-write a record?..

Answer / anna

All pr answers are not right.

We read the record first because :

a) we need to knouw if record is exist

b) if you do not read the record on output file will have
just field that you changed the rest will be blank.

Is This Answer Correct ?    4 Yes 0 No

Hai friends why we need to read a file before re-write a record?..

Answer / ravi patnam

1) When you want to modify a record, first you have to get
that into memory from physical file by the way of reading.

2)Then do modifications.

3)After the modification over again put it bak to the
physical file by using 'Rewrite' command.

Is This Answer Correct ?    3 Yes 0 No

Hai friends why we need to read a file before re-write a record?..

Answer / mallappa

Rewrite is nothing but Update so if you want to
modify/changes in the record you should read the record
first, which you want to
then you can rewrite it. I hope it will clarify your
doubts.

Is This Answer Correct ?    2 Yes 0 No

Hai friends why we need to read a file before re-write a record?..

Answer / guest

The file may be ESDS, RRDS or KSDS.
Assuming that the access mode is sequential.
If you are directly performing a 'REWRITE' operation it
will end oup with file status=43. Means'DELETE OR REWRITE &
NO GOOD READ FIRST'.

Is This Answer Correct ?    1 Yes 0 No

Hai friends why we need to read a file before re-write a record?..

Answer / viks

A disk file, for example MASTER FILE, can be opened as I-O,
which means records from the disk will be accessed, read,
changed, and rewritten.

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More COBOL Interview Questions

In COBOL programming, what is PERFORM? What is VARYING?

0 Answers   CDC,


2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic

0 Answers  


How do you reference the following file formats from cobol programs?

0 Answers  


what is the advantage of sync class

3 Answers   ACS,


) what is the difference between AID and HANDLE AID?

0 Answers   IBM,






CAN ANY ONE HELP WHAT IS QTP? why it is nessery AND WEN IT IS USED?

1 Answers  


I want to declare a field with data type Double in my COBOL program. how shall i do that ?

5 Answers  


What are the different open modes available in cobol?

0 Answers  


How do you get the data to code the BMS macro?

0 Answers   IBM,


01 MOVE 10 TO N 05 PERFOM PARA1 TIMES STOP RUN WAT WILL HAPPEN?? WILL IT RUN INFINITELY OR AN ERROR WIL BE THER BECAUSE NO OF TIMES IS NOT GIVEN??

1 Answers  


How many divisions we have in Cobol ?

4 Answers   Wipro,


What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?

0 Answers  


Categories