Question : The row length of the table exceeded a limit of "32677" bytes. can you give me some advice on how to deal with this problem? the error code associated with the message is SQLCODE=-670, SQLSTATE=54010 I'm using DB2 9.5.0.3 Answer: Without knowing any extra details , I would guess you are attempting to add a column or extend an existing column which is causing the size to be greater than 32768 bytes. The way you approach the problem will depend on what you are attempting to do. For example, if you are executing a create\alter on a table,... Read more →