首页  :: 新随笔  :: 管理

从PostgreSQL迁移到MySQL

Posted on 2022-07-15 18:30  高&玉  阅读(1208)  评论(0编辑  收藏  举报

PostgreSQL端导出建表DDL,更改为MySQL可支持

[postgres]# pg_dump -d postgres -U postgres --schema-only >> mysql_table.ddl

 

PostgreSQL端导出INSERT,注释掉无用的信息

[postgres]# pg_dump -d postgres -U postgres -t TABNAME -a --inserts > tabname.sql
[postgres]# set -i “s/SET/-- SET/g” tabname.sql

 

MySQL端导入

[mysql]# mysql controller < tabname.ddl
[mysql]# mysql controller < tabname.sql