建库语句
create db test on D: using codeset GBK territory CN
或者
create db test on d: using codeset utf-8 territory cn
codeset 和 territory 都是需要指定
建表语句
CREATE TABLE "测试"."测试" ( "测试" VARCHAR(20) )
另外 导入中文防乱码指定 codepage
db2 load from d:\TB_HEDAOSHUIZHI.data of del modified by codepage=1208 insert into test.test (ID,Name)