I'm trying to use mysqldump
to dump a database, but I'm getting an error:
mysqldump: Couldn't execute 'show create table
wp_commentmeta
': Unknown storage engine 'InnoDB' (1286)
No worries; I'll just go into MySQL and change the storage engine for the table:
mysql> show create table wp_commentmeta;
ERROR 1286 (42000): Unknown storage engine 'InnoDB'
mysql> Alter table wp_commentmeta ENGINE = myisam;
ERROR 1286 (42000): Unknown storage engine 'InnoDB'
What am doing wrong? (and/or) How can I fix it?