could you give me an example how, where i code CHECKPOINT
and restart...I need and example....thanks..
Answer Posted / vicky
Since I cannot type in all details...just letting u know some of them----
we need to make some changes to the JCL and also the cobol pgm.
In JCL-
Firstly, we need to include a library for smart restart.
Secondly, define a DSN for the chkpoint restart file, that shall store the information about the chkpoint created and with the number of records committed till the abend occurred ,so that when Job is restarted chkpoint can be checked.
Thirdly,the SYSIN for the RAINPUT step will consist of all the other parameter.Eg- frequency, chkpoint, sql code, etc
JCL will look like-
//EXAMPLE JOB
//STEP1 EXEC PGM=EXAMPLE
//define libaries
//OUTFILE DD DSN=file PS ,DISP=OLD
//
//RAINPUT DD * <-- Optional Smart/RESTART parameter file
CKPT_PACE(50)
//
Coming to the cobol pgm-
we need to code a switch whose value can be chked in case of abend, based on negative SQLCODE returned.
the value returned can be
0 = (Intial start)
1, +2001 = (Restart)
Later Commit para can be called.
If value 1 and +2001 , the pgm can be restarted for a same sqlcode returned , that number of times defined in
parameter of RAINPUT
Hope u could be somewht clear to this,,,
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
List out the data types available.
What is the clustering index in the db2 database?
How do I connect my db2 database to ibm?
What is the use of dclgen in db2?
What is an instance in db2?
What is the information associated with sysibm.syslinks table?
What happens in bind step in a db2 program?
What is scrollable cursor in db2?
What do you mean by cursor?
How do I import a csv file into db2?
When reorg is used?
What is alias in db2?
What is host variable in db2 cobol?
Differentiate between cs and rr isolation levels? Where do you specify them?
Highlight all the advantages that are attached to a package.