{"id":3502,"date":"2010-09-01T01:33:18","date_gmt":"2010-09-01T05:33:18","guid":{"rendered":"http:\/\/g33kinfo.com\/info\/?p=3502"},"modified":"2010-09-01T01:33:18","modified_gmt":"2010-09-01T05:33:18","slug":"convert-mysql-from-myisam-to-innodb-using-a-script","status":"publish","type":"post","link":"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/","title":{"rendered":"Convert MySQL from MyISAM to InnoDB Using a Script"},"content":{"rendered":"<p>From <a href=\"http:\/\/technotes.twosmallcoins.com\/?p=356\">technotes.twosmallcoins.com<\/a><\/p>\n<p>How to Convert MySQL from MyISAM to InnoDB Using a Script<\/p>\n<p>Okay.  So I need to convert MySQL database using the default MyISAM engine to the InnoDB engine.  The command is simple:<\/p>\n<p><code>ALTER TABLE table_name ENGINE = InnoDB;<\/code><\/p>\n<p>However, this command needs to be done for EVERY table.  Yes, it\u2019s a pain in the rear\u2026  so here\u2019s a way to do it by scripting.<\/p>\n<p><strong>Scripting a MySQL InnoDB Engine Conversion<\/strong>:<\/p>\n<p>1) Backup your database. You should probably be doing this already.  Now\u2019s a good time to make sure that your backups ran.<\/p>\n<p>2) Create the script. You\u2019ll need the correct permissions to query the database. Here\u2019s the command.  Be sure to change  as it fits.<\/p>\n<p><code> mysql -p -e \"show tables in <database_name>;\" | tail --lines=+2 | xargs -i echo \"ALTER TABLE {} ENGINE=INNODB;\" > alter_table.sql<\/database_name><\/code><\/p>\n<p>3) Run the script.<\/p>\n<p><code>mysql --database=<database_name> -p < alter_table.sql<\/code><\/p>\n<p>Verify it by running this command in mysql:<\/p>\n<p><code>mysql> show table status;<\/code><\/p>\n<p>Discussion (If You\u2019re Interested)<\/p>\n<p>The script is simply a bunch of ALTER TABLE commands for each of your tables in the database of question.<\/p>\n<p>The mysql -p -e \u201cshow tables in \u201d command gets a list of the tables.  This list has a header that looks like \u201cTables_in_DATABASE\u201d.  The tail command drops that first header line.  Now you have a clean list of tables.  The \"xargs -i echo\" command creates the ALTER TABLE command, inserting the table name where the squiggly braces {} are placed.   It\u2019s now stored in alter_table.sql.<\/p>\n<p>Step two simply runs the script that we stored in alter_table.  Both mysql commands will prompt for a password, based on the -p flag.<\/database_name><\/code><\/p>\n","protected":false},"excerpt":{"rendered":"<p>From technotes.twosmallcoins.com How to Convert MySQL from MyISAM to InnoDB Using a Script Okay. So I need to convert MySQL database using the default MyISAM engine to the InnoDB engine. The command is simple: ALTER TABLE table_name ENGINE = InnoDB; However, this command needs to be done for EVERY table. Yes, it\u2019s a pain in&#8230; <\/p>\n<div class=\"read-more navbutton\"><a href=\"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/\">Read More<i class=\"fa fa-angle-double-right\"><\/i><\/a><\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[],"class_list":["post-3502","post","type-post","status-publish","format-standard","hentry","category-info"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Convert MySQL from MyISAM to InnoDB Using a Script - Linux Shtuff<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Convert MySQL from MyISAM to InnoDB Using a Script - Linux Shtuff\" \/>\n<meta property=\"og:description\" content=\"From technotes.twosmallcoins.com How to Convert MySQL from MyISAM to InnoDB Using a Script Okay. So I need to convert MySQL database using the default MyISAM engine to the InnoDB engine. The command is simple: ALTER TABLE table_name ENGINE = InnoDB; However, this command needs to be done for EVERY table. Yes, it\u2019s a pain in... Read More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/\" \/>\n<meta property=\"og:site_name\" content=\"Linux Shtuff\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/fb.me\/g33kinf0\" \/>\n<meta property=\"article:author\" content=\"https:\/\/fb.me\/g33kinf0\" \/>\n<meta property=\"article:published_time\" content=\"2010-09-01T05:33:18+00:00\" \/>\n<meta name=\"author\" content=\"g33kadmin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/drsinger1111\" \/>\n<meta name=\"twitter:site\" content=\"@drsinger1111\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/convert-mysql-from-myisam-to-innodb-using-a-script\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/convert-mysql-from-myisam-to-innodb-using-a-script\\\/\"},\"author\":{\"name\":\"g33kadmin\",\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/#\\\/schema\\\/person\\\/c022e4c40b13ea1b678e6f020756f547\"},\"headline\":\"Convert MySQL from MyISAM to InnoDB Using a Script\",\"datePublished\":\"2010-09-01T05:33:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/convert-mysql-from-myisam-to-innodb-using-a-script\\\/\"},\"wordCount\":255,\"publisher\":{\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/#\\\/schema\\\/person\\\/c022e4c40b13ea1b678e6f020756f547\"},\"articleSection\":[\"General Info\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/convert-mysql-from-myisam-to-innodb-using-a-script\\\/\",\"url\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/convert-mysql-from-myisam-to-innodb-using-a-script\\\/\",\"name\":\"Convert MySQL from MyISAM to InnoDB Using a Script - Linux Shtuff\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/#website\"},\"datePublished\":\"2010-09-01T05:33:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/convert-mysql-from-myisam-to-innodb-using-a-script\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/g33kinfo.com\\\/info\\\/convert-mysql-from-myisam-to-innodb-using-a-script\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/convert-mysql-from-myisam-to-innodb-using-a-script\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Convert MySQL from MyISAM to InnoDB Using a Script\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/#website\",\"url\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/\",\"name\":\"Linux Shtuff\",\"description\":\"Because I have CRS Syndrome...\",\"publisher\":{\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/#\\\/schema\\\/person\\\/c022e4c40b13ea1b678e6f020756f547\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/#\\\/schema\\\/person\\\/c022e4c40b13ea1b678e6f020756f547\",\"name\":\"g33kadmin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/minion-researchA.gif\",\"url\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/minion-researchA.gif\",\"contentUrl\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/minion-researchA.gif\",\"width\":512,\"height\":512,\"caption\":\"g33kadmin\"},\"logo\":{\"@id\":\"https:\\\/\\\/g33kinfo.com\\\/info\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/minion-researchA.gif\"},\"description\":\"I am a g33k, Linux blogger, developer, student and Tech Writer for Liquidweb.com\\\/kb. My passion for all things tech drives my hunt for all the coolz. I often need a vacation after I get back from vacation....\",\"sameAs\":[\"https:\\\/\\\/thelinuxreport.com\",\"https:\\\/\\\/fb.me\\\/g33kinf0\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/drsinger1111\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Convert MySQL from MyISAM to InnoDB Using a Script - Linux Shtuff","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/","og_locale":"en_US","og_type":"article","og_title":"Convert MySQL from MyISAM to InnoDB Using a Script - Linux Shtuff","og_description":"From technotes.twosmallcoins.com How to Convert MySQL from MyISAM to InnoDB Using a Script Okay. So I need to convert MySQL database using the default MyISAM engine to the InnoDB engine. The command is simple: ALTER TABLE table_name ENGINE = InnoDB; However, this command needs to be done for EVERY table. Yes, it\u2019s a pain in... Read More","og_url":"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/","og_site_name":"Linux Shtuff","article_publisher":"https:\/\/fb.me\/g33kinf0","article_author":"https:\/\/fb.me\/g33kinf0","article_published_time":"2010-09-01T05:33:18+00:00","author":"g33kadmin","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/drsinger1111","twitter_site":"@drsinger1111","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/#article","isPartOf":{"@id":"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/"},"author":{"name":"g33kadmin","@id":"https:\/\/g33kinfo.com\/info\/#\/schema\/person\/c022e4c40b13ea1b678e6f020756f547"},"headline":"Convert MySQL from MyISAM to InnoDB Using a Script","datePublished":"2010-09-01T05:33:18+00:00","mainEntityOfPage":{"@id":"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/"},"wordCount":255,"publisher":{"@id":"https:\/\/g33kinfo.com\/info\/#\/schema\/person\/c022e4c40b13ea1b678e6f020756f547"},"articleSection":["General Info"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/","url":"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/","name":"Convert MySQL from MyISAM to InnoDB Using a Script - Linux Shtuff","isPartOf":{"@id":"https:\/\/g33kinfo.com\/info\/#website"},"datePublished":"2010-09-01T05:33:18+00:00","breadcrumb":{"@id":"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/g33kinfo.com\/info\/convert-mysql-from-myisam-to-innodb-using-a-script\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/g33kinfo.com\/info\/"},{"@type":"ListItem","position":2,"name":"Convert MySQL from MyISAM to InnoDB Using a Script"}]},{"@type":"WebSite","@id":"https:\/\/g33kinfo.com\/info\/#website","url":"https:\/\/g33kinfo.com\/info\/","name":"Linux Shtuff","description":"Because I have CRS Syndrome...","publisher":{"@id":"https:\/\/g33kinfo.com\/info\/#\/schema\/person\/c022e4c40b13ea1b678e6f020756f547"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/g33kinfo.com\/info\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/g33kinfo.com\/info\/#\/schema\/person\/c022e4c40b13ea1b678e6f020756f547","name":"g33kadmin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/g33kinfo.com\/info\/wp-content\/uploads\/2022\/07\/minion-researchA.gif","url":"https:\/\/g33kinfo.com\/info\/wp-content\/uploads\/2022\/07\/minion-researchA.gif","contentUrl":"https:\/\/g33kinfo.com\/info\/wp-content\/uploads\/2022\/07\/minion-researchA.gif","width":512,"height":512,"caption":"g33kadmin"},"logo":{"@id":"https:\/\/g33kinfo.com\/info\/wp-content\/uploads\/2022\/07\/minion-researchA.gif"},"description":"I am a g33k, Linux blogger, developer, student and Tech Writer for Liquidweb.com\/kb. My passion for all things tech drives my hunt for all the coolz. I often need a vacation after I get back from vacation....","sameAs":["https:\/\/thelinuxreport.com","https:\/\/fb.me\/g33kinf0","https:\/\/x.com\/https:\/\/twitter.com\/drsinger1111"]}]}},"_links":{"self":[{"href":"https:\/\/g33kinfo.com\/info\/wp-json\/wp\/v2\/posts\/3502","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/g33kinfo.com\/info\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/g33kinfo.com\/info\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/g33kinfo.com\/info\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/g33kinfo.com\/info\/wp-json\/wp\/v2\/comments?post=3502"}],"version-history":[{"count":0,"href":"https:\/\/g33kinfo.com\/info\/wp-json\/wp\/v2\/posts\/3502\/revisions"}],"wp:attachment":[{"href":"https:\/\/g33kinfo.com\/info\/wp-json\/wp\/v2\/media?parent=3502"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/g33kinfo.com\/info\/wp-json\/wp\/v2\/categories?post=3502"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/g33kinfo.com\/info\/wp-json\/wp\/v2\/tags?post=3502"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}