Posted on February 21, 2023 by darshin
Convert MySQL(Myisam tables) to innoDB
- Database location: /var/lib/mysql/xtream_iptvpro all tables should have two files .frm and .ibd
- If there are any tables that do not have those files and instead have other types of files then note down the table names as they will be needed on the next steps.
- Login to MySQL from CMD.
- xtream_iptvpro – is an example of database name.
- Swap table_name with your actual table.
- Run the following:
use database xtream_iptvpro;
ALTER TABLE table_name ENGINE=InnoDB;
Leave A Comment
What’s happening in your mind about this post !