February 2018
Intermediate to advanced
510 pages
16h 10m
English
Before starting up-gradation, perform the following checks to avoid failure during later stages:
mysqlcheck -u root -p--all-databases--check-upgrade
SELECT TABLE_SCHEMA, TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE ENGINE NOT IN ('innodb', 'ndbcluster') AND CREATE_OPTIONS LIKE '%partitioned%';
This command will list tables that use the storage engine which doesn't support native partitioning. After executing the preceding query, if any table is found then remove the partitioning on the table and change the storage engine, as shown in the following ...
Read now
Unlock full access