0

这是默认的数据库存储引擎吗?我想用 MYSQL "NDB CLUSTER" 存储引擎安装我的 WordPress 网站。我尝试安装 wordpress 站点,但它与 InnoDB 一起安装。请帮我解决这个问题。

我用了这个 SET storage_engine=NDBCLUSTER; 在mysql中。

4

1 回答 1

0

有两种方法可以将具有外键的 InnoDB 表迁移到 NDB。

    Dump the database and edit the script so each table specifies ENGINE=NDB before re-importing the script to a new database
    Drop the constraints, alter the tables to use the NDB engine, and recreate the constraints

Dumping the database and editing the script is a straightforward use of mysqldump and a text editor.

将 InnoDB 表转换为 MySQL 集群

它可能对你有帮助

于 2013-12-05T13:59:20.433 回答