Hi,
Can anyone please get me a sample batch file processing COBOL code with checkpoint and restart logic? I need this urgently.....
Checkpoint/restart is not something that is just "stuck" into a program.Can anyone please get me a sample batch file processing COBOL code with checkpoint and restart logic?
Sorry, we don't do urgent here. . .I need this urgently.....
Here no database is involved and it is a pure batch file processing program.
The simplest pseudo-code wuld be:
Begin
If a restart, re-sync.
Process from where we are now (beginning or restart point).
End
These are not operating system changes but rather application system/database considerations.i understand that it requires system side configuration also apart from developer changes in the program.
Decisions must be made as to how restart/recovery will be handled across that application and/or database and/or external data (reports, qsam files, etc). This is almost never done by just the programmer. . . An individual program's restart would be done by the programmer, but following the overall restart methodology.what kind of setup does it require?