|
|
| Author |
Message |
rajeevdas03
New User
Joined: 21 Jan 2006 Posts: 8 Location: Mumbai
|
|
|
|
Hi,
My input file has suppose 10 records and the program abended after 5th record, how can i restart so that it will procees from 6th record. |
|
| Back to top |
|
 |
References
|
Posted: Thu May 08, 2008 8:55 am Post subject: Re: How can i restart so that it will procees from 6th record |
 |
|
|
 |
the_gautam
Active User
Joined: 05 Jun 2005 Posts: 169 Location: Bangalore
|
|
|
|
| Restart Logic : after every successful processing of a record, you need to store that recordID in some other file. when the program starts execution, it first checks that file for the last successfully processed record. after getting that recordID, the program reads the input file for that recordID and processes the next record onwards... |
|
| Back to top |
|
 |
Moved: Thu May 08, 2008 9:59 am by mcmillan From FAQ & Requests to Mainframe COBOL |
dick scherrer
Global Moderator
Joined: 23 Nov 2006 Posts: 6728 Location: 221 B Baker St
|
|
|
|
Hello,
To add just a bit more:
You need to consider what the abended process was doing. . .
For example:
If it was creating a report output, the report(s) needs to be completely restarted from the beginning even if only to get the accumulators back in sync.
If it was creating output files, they too would need to be re-synched.
If there were database updates (some of which were "rolled back" because of the abend not occurring exactly at a checkpoint), the database will be out of sync. |
|
| Back to top |
|
 |
|
|