We are migrating our database from oracle 10g to DB2 9.7 on AIX platform.There are few columns in oracle table which contain clubbed values(alphanumeric and binary values).The data type of these kind of columns is character.All the binary values in such columns got converted into junk values like /,? etc when stored into char type of column.
While migrating data from oracle tables to DB2,we made use of "IBM's data movement tool".Now when I tried loading data into DB2 tables,DB2 is not able to recognize junk values back into same binary values as oracle.Even the "look and feel" of data is quite different as compared with oracle.
I suspect that it might happen because of code page and character set mismatch,but I am not sure.The code page of DB2 database is 1208,code set is UTF-8 whereas character set of oracle database is WE8ISO8859P1.
Please suggest what can be the possible cause of this problem?