Hello All,
I'm facing a problem while inserting unicode value in DB2 through DB2 Control Center. The following insert statement was issued.
INSERT INTO EMPLOYEE (ID, DATE, ADDRESS, EMPCODE) VALUES (1, '2003-11-29', '?????', 2);
But after paste, in the Control center console it shows
INSERT INTO EMPLOYEE (ID, DATE, ADDRESS, EMPCODE) VALUES (1, '2003-11-29', '?????', 2);
The unicode characters converted to "???" and after executing the statement, naturally it saves ??? in the database. Is there any way to overcome this problem? TIA.
I'm facing a problem while inserting unicode value in DB2 through DB2 Control Center. The following insert statement was issued.
INSERT INTO EMPLOYEE (ID, DATE, ADDRESS, EMPCODE) VALUES (1, '2003-11-29', '?????', 2);
But after paste, in the Control center console it shows
INSERT INTO EMPLOYEE (ID, DATE, ADDRESS, EMPCODE) VALUES (1, '2003-11-29', '?????', 2);
The unicode characters converted to "???" and after executing the statement, naturally it saves ??? in the database. Is there any way to overcome this problem? TIA.