Be carefull when dynamically changing the db2 code page. Don't forget that all your existing tables have been previously loaded with the previous hexadecimal representation of characters. Exemple, if before you were with
an IBM 297 code page where '@' = x'44' and now with an IBM 500 code page then all your previous '@' will appear as 'à'. When doing this kind of update it's wise to first unload all your tables that contains characters strings, then
change the default DB2 code page and then reload all your previously unloaded tables to be sure of their contents.
Dom.