I know I can issue an alter table individually to change the table storage from MyISAM to InooDB.
I am wondering if there is a way to quickly change all of them to InnoDB?
|
|
|
||||
|
|
|
Use this statement as a sql query in you phpMyAdmin to retrieve all the tables in your database (replace name_of_your_db with your database name), copy new statement and run the new sql query:
|
|||||||||
|
|
In the scripts below, replace <username>, <password> and <schema> with your specific data. To show the statements that you can copy-paste into a mysql client session type the following:
To simply execute the change, use this:
CREDIT: This is a variation of what was outlined in this article. |
|||
|
|
|
Use this as a sql query in your phpMyAdmin
|
|||||
|
|
You can execute this statement in the mysql command line tool:
You may need to specify username and password using: mysql -u username -p The result is an sql script that you can pipe back into mysql:
Replace "name-of-database" in the above statement and command line. |
|||||||||||||
|
|
Here is a way to do it for Django users:
Add that to your app under the folders management/commands/ Then you can convert all your tables with a manage.py command:
|
|||
|
|
|
You could write a script to do it in your favourite scripting language. The script would do the following:
|
|||
|
|
|
|||
|
|
|
From inside mysql, you could use search/replace using a text editor:
Note: You should probably ignore information_schema and mysql because "The mysql and information_schema databases, that implement some of the MySQL internals, still use MyISAM. In particular, you cannot switch the grant tables to use InnoDB." ( http://dev.mysql.com/doc/refman/5.5/en/innodb-default-se.html ) In any case, note the tables to ignore and run:
Now just copy/paste that list into your text editor and search/replace "|" with "ALTER TABLE" etc. You'll then have a list like this you can simply paste into your mysql terminal:
If your text editor can't do this easily, here's another solution for getting a similar list (that you can paste into mysql) for just one prefix of your database, from linux terminal:
|
||||
|
|