How much disk space does innodb need to ALTER TABLE
Yes. You will need enough space for two copies of the table. MySQL performs alterations of tables by creating a new table, copying data from the old, and then deleting the old table.
Yes. You will need enough space for two copies of the table. MySQL performs alterations of tables by creating a new table, copying data from the old, and then deleting the old table.