标签:dig none span sso man 提交 ann 目录 表空间
-----
ALTER TABLE tbl_name
IMPORT TABLESPACE;
InnoDB
tables and indexes are stored in the system tablespace. As an alternative, you can store each InnoDB
table and associated indexes in its own data file. This feature is called “file-per-table tablespaces” because each table has its own tablespace, and each tablespace has its own .ibd
data file. This feature is controlled by the innodb_file_per_table
configuration option.You cannot freely move .ibd
files between database directories as you can with MyISAM
table files. The table definition stored in the InnoDB
shared tablespace includes the database name. The transaction IDs and log sequence numbers stored in the tablespace files also differ between databases.
To move an .ibd
file and the associated table from one database to another, use a RENAME TABLE
statement:
RENAME TABLEdb1.tbl_name
TOdb2.tbl_name
;
If you have a “clean” backup of an .ibd
file, you can restore it to the MySQL installation from which it originated as follows:
The table must not have been dropped or truncated since you copied the .ibd
file, because doing so changes the table ID stored inside the tablespace.
Issue this ALTER TABLE
statement to delete the current .ibd
file:
ALTER TABLE tbl_name
DISCARD TABLESPACE;
Copy the backup .ibd
file to the proper database directory.
Issue this ALTER TABLE
statement to tell InnoDB
to use the new .ibd
file for the table:
ALTER TABLE tbl_name
IMPORT TABLESPACE;
标签:dig none span sso man 提交 ann 目录 表空间
原文地址:https://www.cnblogs.com/zrdpy/p/f04aad97f0695d415c425d01629066a2.html