View and change the MySQL database table storage Engine

Source: Internet
Author: User
To be a qualified program ape, in addition to the beauty of writing code, knowledge of the database is also indispensable. Here's a summary of how to view and change the MySQL database table storage Engine:
1, see the database can support the storage engine: show engines;
2. View the storage engine used by a table in a database: Show table status from Db_name where name= ' table_name '; (note: Remove the Where condition to see the storage engine of all tables in a database)
3, change the table engine method: ALTER tables TABLE_NAME ENGINE=INNODB;
4. Turn off the InnoDB engine method: Turn off the MySQL service via the "net stop MySQL" command, locate the My.ini file under the MySQL installation folder, and default-storage-engine= InnoDB changed to Default-storage-engine=myisam. Change the #skip-innodb to Skip-innodb, and finally start the MySQL service with the "net start MySQL" command.

View and change the MySQL database table storage Engine

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.