optimize tables and innodb

2003-09-18 Thread Franky
Hi all, for myisam tables we have optimize table that can be cronned to run at night, but is there something like this for the innodb table type as well? Franky -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL

Re: optimize tables and innodb

2003-09-18 Thread Gustavo A. Baratto
from the manual: - 7.5.12.3 Defragmenting a Table If there are random insertions or deletions in the indexes of a table, the indexes may become fragmented. By fragmentation we mean that the physical ordering of the index pages on the disk is not close to the alphabetical ordering of the

Re: optimize tables and innodb

2003-09-18 Thread Gustavo A. Baratto
from the manual: - 7.5.12.3 Defragmenting a Table If there are random insertions or deletions in the indexes of a table, the indexes may become fragmented. By fragmentation we mean that the physical ordering of the index pages on the disk is not close to the alphabetical ordering of the

Re: optimize tables and innodb

2003-09-18 Thread Chris Nolan
Recently, the great Heikki said that the following directive should also defragment your InnoDB tables: ALTER TABLE table_name TYPE=InnoDB; How was it put...ah yes, a table no-op. Regards, Chris On Fri, 2003-09-19 at 01:32, Gustavo A. Baratto wrote: from the manual: - 7.5.12.3