8 messages in com.mysql.lists.mysqlRe: innodb
FromSent OnAttachments
Gustavo A. Baratto22 Sep 2003 09:31 
Heikki Tuuri22 Sep 2003 10:22 
Heikki Tuuri23 Sep 2003 05:49 
Heikki Tuuri23 Sep 2003 06:35 
Gustavo A. Baratto23 Sep 2003 06:51 
Heikki Tuuri23 Sep 2003 08:28 
Gustavo A. Baratto23 Sep 2003 15:56 
Heikki Tuuri24 Sep 2003 12:45 
Subject:Re: innodb
From:Heikki Tuuri (Heik@innodb.com)
Date:09/22/2003 10:22:04 AM
List:com.mysql.lists.mysql

Gustavo,

----- Original Message ----- From: ""Gustavo A. Baratto"" <gbar@superb.net> Newsgroups: mailing.database.myodbc Sent: Monday, September 22, 2003 7:33 PM Subject: innodb

Does anybody know what this error is all about? and how do to get rid of it... It started when I upgraded 4.0.13 to 4.0.15

------- 030922 5:17:30 InnoDB: Error: page 12222 log sequence number 0 768348475 InnoDB: is in the future! Current system log sequence number 0 330400180. InnoDB: Your database may be corrupt.

------

you have probably put old ib_logfiles to your database, and the log sequence number in the log files is lagging behind what is in the ibdata files.

You can artificially inflate the log sequence number of the log files by creating a dummy table and inserting and deleting rows in it. Increasing the lsn by 500 MB should take less than an hour. You can monitor the lsn with SHOW INNODB STATUS.

After that run CHECK TABLE on all your tables. Wrong log sequence numbers can cause corruption.

Best regards,