Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

on a test for Java-MySQL-Restlet application, I write to database at 4reqs/second for 120 seconds.

In this write I insert a row that has foreign key which has the same value for all rows, and this exception occurs:

Could not recover transaction. Original exception follows. com.mysql.jdbc.MysqlDataTruncation: Data truncation: Out of range value for column 'idPxxx' at row 1

Only 5% of requests fails to this exceptions, others works.

Regards

share|improve this question
see this Question stackoverflow.com/questions/73109/mysql-data-truncation-error – ARM Nov 20 '11 at 10:54

1 Answer

up vote 2 down vote accepted

It means that the data you are storing in idPxxx doesn't fit. For example a string might be too long, or a number too large.

What is the datatype of idPxxx? And what are you trying to store in it?

share|improve this answer
Thank you, that's what I thought but this problem happens only to 5% of data sent, and when I repeat the test the same happens. – Khaledez Nov 20 '11 at 7:16
@Khaledez how come you didn't answer the questions I asked in my answer? – Ariel Nov 20 '11 at 9:03
Datatype is Unsigned INT(64) and I'm trying to insert value 2000. Again I'm inserting into X table which has a foreign key idPxxx from Y table and the value of idPxxx is existed in Y table. – Khaledez Nov 20 '11 at 10:39
@Khaledez as an experiment, try changing the datatype to signed, and try the load. Perhaps you have some negative number and don't know it? Another possibility is that the java connector is not handling 64 bit numbers correctly, so it's truncating them to 32 bit, which can turn them negative and that in turn is failing since the column is listed as unsigned. – Ariel Nov 20 '11 at 20:33
thank you, I discovered that the problem is caused by another problem that sets the value of idPxxx to -2, after I've changed the data type to SIGNED – Khaledez Nov 22 '11 at 13:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.