Posted on 2008-12-04 14:24
Prayer 阅读(190)
评论(0) 编辑 收藏 引用 所属分类:
DB2
产品:DB2 UDB
平台:Windows 9x/NT/2000, Unix, Linux
版本:5.x/6.x/7.x
问题:如何解决DB2 数据库代码页不兼容的问题?
解答:发出命令:
db2 connect to db_name 后系统返回 SQL0332N There is no available conversion for the source code page "819" to the target code page "1386". Reason Code "1". SQLSTATE=57017
|
DB2要求源代码页与目标代码页是互相兼容的, 在上边的例子中,源代码页为819与目标代码页为1386不兼容导致了数据库连接失败,解决方法如下:
在发出db2 connect 命令失败的机器上,在DB2 命令窗口中执行如下命令后重新进行连接:
-> db2set db2codepage=1386 –I instance_name db2 terminate
|