MySQL MyISAM engine converted to InnoDB operation record

Source: Internet
Author: User
Tags mysql command line freeswitch

Go to MySQL command line mode: # MYSQL-UROOT-PPWD

1. See what storage engine MySQL provides:

Mysql> show engines;

2. Check the default storage engine currently provided by MySQL:

Mysql> Show variables like '%storage_engine% ';

3. Display the Database list:

mysql> show databases;

4. Enter the database to be modified

mysql> use FreeSWITCH;

5. List all tables of the FreeSWITCH library

Mysql> Show tables;

6. View the current engine that needs the table

Mysql> Show CREATE Table CDR; Current table: Engine=myisam

7. Modify the table's storage engine to InnoDB (This command can also change InnoDB to MyISAM)

Mysql> ALTER TABLE CDR Engine=innodb;

8. Restart MySQL after conversion is complete

Service mysqld Restart

  

MySQL MyISAM engine converted to InnoDB operation record

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.