Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

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?

5 Answers   TCS,


What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(9) VALUE SPACES. 01 WS-VARN REDEFINES WS-VARX PIC 9(9).

8 Answers  


In INITIALIZE what is Repalcing Word will do

1 Answers   CTS,


What are the rules of the move verb?

0 Answers  


Write a program that uses move corresponding.

0 Answers  


What is the difference between a binary search and a sequential search?

10 Answers  


What are the cobol coding sheets?

0 Answers  


What is the significance of the PROGRAM-ID paragraph? If this name doesnt match with the name of the COBOL program, does it make a difference? Is the name specified in the PROGRAM-ID paragraph used as a name for the load module or any such thing?

4 Answers   IBM,


How to remove the spaces at the end of each record in the output file of variable length, via cobol program?

0 Answers  


WORKING-STORAGE SECTION. 01 A PIC X(3) VALUE 'ABC' 01 B PIC 9(3). PROCEDURE DIVISION. MOVE A TO B. STOP RUN. OUTPUT IS: AB3 WHY AND HOW THIS IS HAPPENING.

4 Answers   Atos Origin,


DATAONLY, MAPONLY functionality?

1 Answers   IBM,


what if any ,is the syntex error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.

5 Answers   TCS,


Categories