This article mainly introduces the problem of incompatibility with the DB2 database code page. We all know that the DB2 database requires that the source code page and target code page be compatible with each other, in the preceding example, the database connection fails because the source code page is 819 incompatible with the target code page 1386.
For example:
When the command: db2 connect to db_name is issued, the system returns
- SQL0332N There is no available conversion for the source code page "819" to the target code page "1386". Reason Code "1". SQLSTATE=57017
DB2 requires that the source code page and the target code page be compatible with each other. In the preceding example, the database connection fails because the source code page is 819 incompatible with the target code page 1386.
The solution is as follows:
On the machine that fails to issue the db2 connect command, execute the following command in the DB2 command window and re-connect:
- ->
- db2set db2codepage=1386 –I instance_name
- db2 terminate
The above content is an alternative solution to the problem of incompatibility with the DB2 database code page. I hope you will find some gains.
The above content is an alternative solution to the problem of incompatibility with the DB2 database code page. I hope it will help you in this regard.