Hi michael1174,
This error is means that the table is in a "Check Pending" state. There may be referential integrity issues that need to be addressed.
Here's a short article from IBM on the problem: http://www-1.ibm.com/suppo
The article crudely describes what's going on, but doesn't really give you a detailed solution.
Execute the SET CONSTRAINTS statement with the IMMEDIATE CHECKED option and ensure that the data satisfies all the constraints defined on the table or the table depending on it
Good Luck!
Kent
Main Topics
Browse All Topics





by: db2inst1Posted on 2006-03-16 at 11:11:41ID: 16208310
Explanation: When a table is in a check pending state, there may
be one or more rows that violate constraints defined on the data.
This table cannot be used for the operation. An operation on a
parent table that is not in a check pending state may also
receive this error if a dependent table is in a check pending
state.
User Response: Execute the SET INTEGRITY statement with the
IMMEDIATE CHECKED option and ensure that the data satisfies all
the constraints defined on the table or the table depending on
it.