what is check point and restart Logic ? why do we go for
that ??

Answers were Sorted based on User's Feedback



what is check point and restart Logic ? why do we go for that ??..

Answer / milky

Checkpoint-Restart logic is used when your program performs
a large number of database updates or inserts. If you want
to process and insert say 1000 records in a table, and your
program abends at 726th record, then if the checkpoint
frequency has been set to 100, then, on restart the program
will start processing from 701th record as each processing
of 100 records results in a COMMIT.

Is This Answer Correct ?    68 Yes 5 No

what is check point and restart Logic ? why do we go for that ??..

Answer / harsha

check point and restart logic are mainly used when our
table has 1000 records and we are getting abend after 100
records and we want to start the execution after 100th
record we use this.for this we have to use check points for
every 100 records

Is This Answer Correct ?    41 Yes 12 No

Post New Answer

More DB2 Interview Questions

How can you display the current date & current time ?

7 Answers   Cap Gemini,


How to see the structure of db2 table??

4 Answers   IBM,


Can a primary key have null values? If we try to insert a null value in a primary key column, will it work or give an error code?

6 Answers  


The only place of VSAM KSDS in DB2 is?

2 Answers   IBM,


How Plan is created while executing the query using SPUFI?

3 Answers  






where can we use index and subscript ? with example ?

3 Answers   CTS,


I have a table which has thousand of records i want to fetch only record num 100 to record num 200. Write a query that satisfies this criteria.(Cant use any keys) Anyone please reply ASAP!

17 Answers   KNIT, Tech Mahindra,


PLAN IS EXECUTABLE AND PACKAGE IS NOT EXECUTABLE . THEN WHAT IS THE USE OF PACKAGE?

2 Answers   Tech Mahindra, Wipro,


What is rct?

0 Answers  


How do I import a csv file into db2?

0 Answers  


How to run db2 command in windows?

0 Answers  


db2 query I have one table with the following details. SNO SNAME DOJ ------ -------------------- ---------- 10 KRISH 2007-03-19 20 REDDY 2007-05-19 30 RRRRR 2007-05-19 40 BBBBB 2008-05-19 50 CCCCC 2009-05-19 60 JJJJJ 2009-05-19 70 JJJJJ 2004-05-19 i want the output in the following format:( no of students joined in each year(no nedd to consider about month and date) year count --------- ---------- 2004 1 2007 3 2008 1 2009 2

9 Answers   TCS,


Categories