【MySQL 5.7 Reference Manual】15.4.10 General Tablespaces(通用表空间)

来源:互联网 发布:百胜厨 知乎 编辑:程序博客网 时间:2024/05/22 10:48
15.4.10 General Tablespaces(通用表空间)

A shared InnoDB tablespace created using CREATE TABLESPACE syntax. General tablespaces can be created outside of the MySQL data directory, are capable of holding multiple tables, and support tables of all row formats. General tablespaces were introduced in MySQL 5.7.6.

一个共享的InnoDB表空间,通过CREATE TABLESPACE语句创建。通用表空间可以被创建在MySQL数据目录外,它可以容纳多个表,并支持表的全部行格式。通用表空间在MySQL 5.7.6中被引入。

Tables are added to a general tablespace using CREATE TABLE tbl_name ... TABLESPACE [=] tablespace_name or ALTER TABLE tbl_nameTABLESPACE [=] tablespace_name syntax.

表使用CREATE TABLE tbl_name ... TABLESPACE [=] tablespace_name或ALTER TABLE tbl_nameTABLESPACE [=] tablespace_name语句添加到通用表空间中。

For more information, see Section 15.7.9, “InnoDB General Tablespaces”.

更多信息,请参考15.7.9,“InnoDB通用表空间”。
0 0