View and modify MySQL database table storage engine _ MySQL

Source: Internet
Author: User
To be a qualified programmer, in addition to writing beautiful code, it is also indispensable to be familiar with the database. The following summarizes how to view and modify the MySQL database table storage engine: to be a qualified programmer, in addition to writing beautiful code, it is also indispensable to be familiar with the database. The following summarizes how to view and modify the MySQL database table storage engine:
1. view the storage engine supported by the database: 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: after removing the where condition, you can view the storage engine of all tables in a database)
3. alter table table_name engine = innodb;
4. how to disable the Innodb engine: run the "net stop mysql" command to disable the mysql service. find my. ini file, change default-storage-engine = INNODB to default-storage-engine = MYISAM, and change # skip-innodb to skip-innodb; finally, run the "net start mysql" command to start the mysql service.

The above section shows how to view and modify the content of MySQL database table storage engine _ MySQL. For more information, see PHP Chinese network (www.php1.cn )!

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.