MySQL + Change all tables to another engine using command line
Friday, June 29th, 2012As the blog post title suggest, below is the way you can make your life easier.
FOR /F "skip=1" %G IN ('"mysql -u root -pMyPassword -e "SHOW TABLES IN world;""') DO mysql -u root -pMyPassword world -e "ALTER TABLE %G ENGINE=InnoDB;"
Caution!! Do at your own risk.
till then…
Keep Going…Each step may get harder But don’t stop! The view is beautiful at the top !
