时间:2021-07-01 10:21:17 帮助过:277人阅读
MYSQL表空间迁移。 表空间迁移。 有如下原因你可能需要将 InnoDB 表复制到不同的数据库服务器上。 不增加生产负载的情况下生成 一个报表 在一个新的服务器上建立一个和生产上数据相同的表 做一个备份在发生问题或错误操作时用于恢复 快速将数据从一个服务器迁
MYSQL表空间迁移。表空间迁移。
有如下原因你可能需要将InnoDB表复制到不同的数据库服务器上。
命令FLUSH TABLES ... FOREXPORT 使.ibd文件保持一致的状态。只有文件处于一致的状态我们才可以复制它。这个文件也会同时创建一个扩展名.cfg的二进制的文件。命令ALTER TABLE ...IMPORT TABLESPACE 会使用这个二进制文件对导入过程进行校验。
对于 MySQL 5.6.8版本, ALTER TABLE ...IMPORT TABLESPACE 命令不再一定需要一个扩展名为.cfg二进制文件了。但如果真的没有这个文件我们会收到下面这样一个警告。
Message:InnoDB: IO Read error: (2, No such file or directory) Error opening '.\
test\t.cfg',will attempt to import without schema verification
1row in set (0.00 sec)
这个特性有时候还是很有用的。比如,在模式不匹配的导入过程中,或者在一些需要恢复的情景下,元数据又不能从.ibd文件获得,则这个命令不需要一个扩展名为.cfg的二进制文件就可以导入的特性就很有用。
可迁移表空间的限制:
下面来看一个实例:
在源服务器上我们来对city表进行迁移:
1. mysql> use test;C:\C:\ProgramData\MySQL\MySQLServer 5.6\data\world
2. C:\ProgramData\MySQL\MySQLServer 5.6\data\world>dir
3. Volume in drive C has no label.
4. Volume Serial Number is D0FA-F7A0
5. Directory of C:\ProgramData\MySQL\MySQL Server5.6\data\world
6. 10/08/2013 03:15 PM
7. 10/08/2013 03:15 PM
8. 10/08/2013 03:15 PM 8,710 city.frm
9. 10/08/2013 03:15 PM 273,293 city.MYD
10.10/08/2013 03:15 PM 43,008 city.MYI
11.10/08/2013 03:15 PM 9,172 country.frm
12.10/08/2013 03:15 PM 0 country.MYD
13.10/08/2013 03:15 PM 5,120 country.MYI
14.10/08/2013 03:15 PM 8,702 countrylanguage.frm
15.10/08/2013 03:15 PM 38,376 countrylanguage.MYD
16.10/08/2013 03:15 PM 18,432 countrylanguage.MYI
17.10/08/2013 03:15 PM 61 db.opt
18. 10File(s) 404,874 bytes
19. 2 Dir(s) 224,709,537,792 bytes free
20.mysql> use world
21.Database changed
22.mysql> show tables;
23.+-----------------+
24.| Tables_in_world |
25.+-----------------+
26.| city |
27.| country |
28.| countrylanguage |
29.+-----------------+
30.3 rows in set (0.00 sec)
31.mysql> flush table cityfor export;
32.ERROR 1031 (HY000): Table storage engine for 'city' doesn't havethis option
33.mysql> alter table cityengine=innodb;
34.mysql> flush table cityfor export; --对表加锁。
35.Query OK, 0 rows affected (0.18 sec)
36.
复制表文件到目标位置
在目标库上删除可能存在的同名表空间。
2. Query OK, 0 rowsaffected (0.07 sec)
3. mysql> alter table city discard tablespace;删除可能存在的同名表空间
4. Query OK, 0 rowsaffected (0.23 sec)
5. mysql> selectcount(*) from city;
6. ERROR 1814 (HY000):Tablespace has been discarded for table 'city'
7. mysql> alter tablecity import tablespace;
8. ERROR 1146 (42S02):Table 'world.city' doesn't exist
9. C:\ProgramData\MySQL\MySQLServer 5.6\data\world\city>copy city.* ..
10.city.cfg
11.city.frm
12.Overwrite ..\city.frm? (Yes/No/All): yes
13.Access is denied.
14.city.ibd
15. 2 file(s) copied.
16.C:\ProgramData\MySQL\MySQL Server 5.6\data\world\city>
17.mysql> alter table city import tablespace;
18.Query OK, 0 rows affected (0.94 sec)
19.mysql> select count(*) from city;
20.+----------+
21.| count(*) |
22.+----------+
23.| 4079 |
24.+----------+
25.1 row in set (0.08 sec)
表空间被成功。