Casbay Knowledge Base

Search our articles or browse by category below

Working with MySQL database engines

Last updated: January 18, 2023
Estimated reading time: 2 min

Working with MySQL database engines

MySQL Database Engines

Database engines provide underlying functionality for MySQL to work with and process data.

There are two most common and popular MySQL database engines: MyISAM and InnoDB. MyISAM is the default engine for MySQL (versions earlier than 5.5.5). It functions well in most scenarios and it is depending on your needs. There are some situations where another database engine, such as InnoDB, may be the better choice. For example, one of the differences between them is InnoDB supports transactions, whereas MyISAM does not. Besides, InnoDB provides support for foreign keys, whereas MyISAM does not.

Furthermore, you can complete control over how and when MySQL uses the various database engines when you have root access to your server. You can also change the default database engine, change the database engine of a specific table, and more.

Determining The Default Database Engine

Firstly, type the following command at the mysql> prompt:

SHOW ENGINES;
A list of supported engines appears, along with a brief description and the supported features for each engine. The default database engine is marked DEFAULT in the “Support” column.

Changing The Default Database Engine

You can change the default database engine for your MySQL installation. After you do this, all new tables that you create will use the new database engine (unless you explicitly set the engine during table creation).

To change the default database engine, follow these steps:

  1. Use your preferred text editor to open the my.cnf file on your server. The location of the my.cnf file depends on your Linux distribution:
    • On CentOS and Fedora, the my.cnf file is located in the /etc directory.
    • On Debian and Ubuntu, the my.cnf file is located in the /etc/mysql directory.
  2. In the my.cnf file, locate the [mysqld] section.
  3. Add or modify the following line in the [mysqld] section. Replace ENGINE with the name of the engine that you want to use as the default:
default-storage-engine=ENGINE

If you are enabling the InnoDB database engine, depending on your Linux distribution you may have to disable the following line in the my.cnf file:

skip-innodb

To do this, just add a pound sign (#) to the beginning of the line, as follows:

#skip-innodb
  1. Save the changes to the my.cnf file, and then exit the text editor.
  2. Restart the MySQL server using the appropriate command for your Linux distribution:
    • For CentOS and Fedora, type:
      service mysqld restart
    • For Debian and Ubuntu, type:
      service mysql restart
  3. To confirm the new default database engine, use the SHOW ENGINES SQL statement as described in the “Determining the default database engine” section.

Determining A Table's Current Database Engine

To determine which engine a database table is currently using, type the following command at the mysql> prompt. Replace the database with the name of the database that you want to check:

SELECT TABLE_NAME, ENGINE FROM information_schema.TABLES where TABLE_SCHEMA = 'database';

This command displays a list of every table in the database, along with the engine each table is using.

Changing A Table's Database Engine

You can change the database engine for a table that already exists. For example, the following SQL statement shows how to modify a table named myTable to use the InnoDB engine:

ALTER TABLE myTable ENGINE = InnoDB;

Creating A New Table With A Specific Database Engine

When you create a table in a database, you can explicitly set its database engine (otherwise, MySQL uses the default database engine during table creation). For example, the following SQL statement shows how to create a table named myTable that uses the MyISAM database engine:

CREATE TABLE myTable (
       id INT NOT NULL AUTO_INCREMENT,
       PRIMARY KEY (id),
       data VARCHAR(20) NOT NULL
) ENGINE MyISAM;

Similarly, to create a table that uses the InnoDB database engine, you could use the following SQL statement:

CREATE TABLE myTable (
       id INT NOT NULL AUTO_INCREMENT,
       PRIMARY KEY (id),
       data VARCHAR(20) NOT NULL
) ENGINE InnoDB;

If you find this article helpful, you can learn more on the topic Database (MS SQL & MySQL).

Was this article helpful?
Dislike 0
Previous: What is RAID?
Next: Transfer Files via rsync and SSH on Linux
Discover the perfect balance of performance and budget-friendly Dedicated Server plan !
Discover the perfect balance of performance and budget-friendly Dedicated Server plan !
High performance and low cost Dedicated Server plan 128GB from $185 – upgrade today!
High performance and cheap Dedicated Server plan 128GB from $185 – upgrade today!