Database migration between Navicat servers

need:

In our daily work, we will encounter the need for database migration between two servers, not only the structure, but also the data migration. First of all, what I often think of is to dump the sql file and then go to the target server to run the sql file. Often It will end in failure, obviously this method is not feasible.

accomplish

Navicat has its own data migration function.
For example:
I want to migrate the two databases ksxy-cloud and ksxy-config in cloud-prop to localhost_3306.
insert image description here
First, create the corresponding database in the target server localhos_3306 and
insert image description here
select it. source and target database
insert image description here

Then select the data you want to transfer according to your needs.
insert image description here

Guess you like

Origin blog.csdn.net/weixin_58286934/article/details/128499056