批量更改MySQL存储引擎
如何查看MySQL的当前存储引擎?
一般情况下,mysql会默认提供多种存储引擎,你可以通过下面的查看:
看你的mysql现在已提供什么存储引擎:
mysql> show engines;
看你的mysql当前默认的存储引擎:
mysql> show variables like '%storage_engine%';
你要看某个表用了什么引擎(在显示结果里参数engine后面的就表示该表当前用的存储引擎):
mysql> show create table 表名;ALTER TABLE wp_posts ENGINE=INNODB;#mysql --user=root --password='wgl123#@!' -S /tmp/mysql5.7.17.sock -e "show table status from wantoutiao where Engine='InnoDB'\G"|grep Name|awk '{print "mysql -uroot -p'' -S /tmp/mysql5.7.17.sock -e \"alter table "$2" engine=innodb;\" -S /tmp/mysql5.7.17.sock"}'