I have ran a db2move unload and load from Linux to Windows db2 v8 fp 12 or so. There's no errors in the load onto Windows. However, when trying to query a table, I get the
com.ibm.db.DataException: A database manager error occurred. : [IBM][CLI Driver][DB2/NT] SQL0668N Operation not allowed for reason code "1" on table "prd.users". SQLSTATE=57016
So, I try set SET INTEGRITY FOR prd.users IMMEDIATE CHECKED FOR EXCEPTION IN prd.users USE prd.users_EXCEPT;
I can now query the users table. Is this supposed to put in the problematic rows into the exception table (I don't see any)? How can I accomplish this?