there is a tool asntdiff which is part of DB2 II(or Websphere II, whatever they call it now) ... This can be used to comapre the data in two tables ..
You can also use EXCEPT operation ... create a nickname from the remote table, call it remote_tab and if local_tab is the table you want to compare withj
select col1,col2 from local_tab
except
select col3,col4 from remote_tab
This will list alll rows in local_tab not in remote_tab ...