Answer Posted / kamal singh
It comes into existencw when constraint checking is
suspended for a particular table. Let me explain with the
help of an example:
If we want to temporarily suspend constraint checking for a
table named EMPLOYEES and deny read-only access to that
table while constraint checking is turned off, we could do
so by executing a SET INTEGRITY statement that looks
something like this:
SET INTEGRITY FOR EMPLOYEES OFF
When constraint checking is suspended for a particular
table, that table is placed in "Check Pending" state to
indicate that it contains data that has not been checked
(and that may not be free of constraint violations). While
a table is in "Check Pending" state, it cannot be used in
insert, update, or delete operations, nor can it be used by
any DB2 UDB utility that needs to perform these types of
operations. In addition, indexes cannot be created for a
table while it is in "Check Pending" state, and data stored
in the table can be retrieved only if the access mode
specified when the SET INTEGRITY statement was used to
place the table in "Check Pending" state allows read-only
access.
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Explain the benefits you can get from mainframe connect?
Explain the contention situations caused by locks?
What is data manager?
What is meant by explain?
What is the use of runstats in db2?
Give the name of some fields form sqlca.
When reorg is used?
How do I delete a table in database?
What is the role of union all and union
What is bind in db2?
What is ibm db2 used for?
What is load replace in db2?
How do you find the maximum value in a column in db2?
What is db2 plan table?
What are the various isolation levels possible?