点击进入Navicat并点击键盘上F6
,出现命令行界面 ,输入指令:
show engines;
Windows系统 : 在my.ini
中加入federated
在服务器A上有MySQL数据库test_a
,在服务器B上有MySQL数据库test_b
。现在需要将test_a库中的user表数据映射到数据库test_b
中。此时需要在数据库test_b
中建立表user
,注意ENGINE
和CONNECTION
。
CREATE TABLE `user` (
`id` int(11) NOT NULL,
`name` varchar(30) NOT NULL,
`age` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=FEDERATED
CONNECTION='[mysql://test:123456@192.168.1.5:3306/test_a/user’;](mysql://test:123456@192.168.1.5:3306/test_a/user';)
test_a
设置可以远程访问,并给test
用户分配相关表的读写权限。test_b
中的user表后,就可以在test_a
中的user表中看到相关改动;同理,修改test_a
中的user表后,就可以在test_b
中的user表中看到相关改动。“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:MySQL开启federated引擎实现数据库表映射