I'm using MySQL database for my system current,
now i want to move it to DB2
when i create tables,
i usually put..like example:
create table account(
username varchar(50) character set latin1 default NULL,
password varchar(50) collate latin1_general_cs default NULL
)
something like that, but it doesnt seems to work at db2
do anyone knows how to convert those statement into db2 format?
i've read some articles about CCSID for db2, but it doesnt seems to work.
thanks