Hi!
I have this intermittent problem with MySQL 5.1.33 (Community Server) for Windows, where the Update_time (when using SHOW TABLE STATUS) does not seem to get updated when executing UPDATE command.
After connecting to MySQL, I executed "SHOW TABLE STATUS" command, and it returned Update_time: 2010-01-05 08:28:27
I then executed an UPDATE command on the same table. It was successful, and shows "3501 rows affected"
I, once again, executed "SHOW TABLE STATUS". However, it returned the same Update_time as in #1 (2010-01-05 08:28:27)
Note: I tried it using INSERT, instead of UPDATE, and the Update_time was successfully updated.
Isn't the UPDATE command suppose to affect the Update_time of the table? What puzzles me more is that this is an intermittent issue. Sometimes the UPDATE command works, but most of the time it just doesn't seem to have effect on the table's status.
Any information regarding this issue would be very helpful. Thanks!