这是默认的数据库存储引擎吗?我想用 MYSQL "NDB CLUSTER" 存储引擎安装我的 WordPress 网站。我尝试安装 wordpress 站点,但它与 InnoDB 一起安装。请帮我解决这个问题。
我用了这个 SET storage_engine=NDBCLUSTER; 在mysql中。
这是默认的数据库存储引擎吗?我想用 MYSQL "NDB CLUSTER" 存储引擎安装我的 WordPress 网站。我尝试安装 wordpress 站点,但它与 InnoDB 一起安装。请帮我解决这个问题。
我用了这个 SET storage_engine=NDBCLUSTER; 在mysql中。
有两种方法可以将具有外键的 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.
它可能对你有帮助