DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Change Table Type
// generate alter table statement to change table type
// from myisam to innodb
select CONCAT('ALTER TABLE ', TABLE_SCHEMA, '.', TABLE_NAME, ' ENGINE=Innodb;') from information_schema.tables where ENGINE = 'MYISAM';





