I have a DB2 table which has 1000 rows.after udatingg first
110 rows, my job abends. Now what I have to do if I want to
restart the job next time so that it should start updating
from 111th row (without updating first 110 rows again).
Answer Posted / shashi
Instead of commiting at the last point, commit at certain
intervals (increase the frequency of commit, say after
every 100 records in this situation)
Create one temporary table with a dummy record and insert
one record into the table for every commit with key and
occurance of commit. And this insertion should happen just
before the issue of commit.
And in the procedure division, first paragraph should read
the last record of the table and skip the records that are
already processed and committed. After processing all the
records delete the entries in the table and issue one final
commit.
| Is This Answer Correct ? | 21 Yes | 2 No |
Post New Answer View All Answers
How is deadlock resolved?
What is the function of logging in the db2 database?
What is null indicator in db2?
How do I delete a column in db2?
What is a trigger in the db2 database?
How can we read records for specific member in CL? AND rpg?
What does db2 plan contain?
List some fields from sqlca?
What is consistency token in db2?
What is the use of dclgen in db2?
What are the two types of logging in the db2 database? Explain them.
what is db2 restart?
Are views updateable?
Mention the different locking levels that are available in db2.
What is the result of open cursor statement?