When you loading all database with db2move command, propably most of the tables being loaded are in pending state. To check which ones, execute SQL statement:
SELECT tabname,status,const_checked FROM syscat.tables WHERE status='C'
This command will list all tables in pending state
Reson code:
* "1" - table is in pending state - to fix this execute
SET INTEGRITY FOR table_name IMMEDIATE CHECKED
* "3" - previous load operation on this table failed. You have to terminate or restart previous load command