postgreSQL 到 MySQL 转换器
我在 postgreSQL 数据库中有一个表,我想将其转换为 MySQL 表。做到这一点最简单的方法是什么?有什么工具可以做到这一点吗?请记住,我不会将整个数据库转换为 MySQL...我只是从 postgreSQL 中获取一个表并将其转换为 MySQL 表
I have a table in a postgreSQL database that I would like to convert into a MySQL table. What would be the easiest way to do this? Any tools to do this? Remember, I am not converting the whole database to MySQL... I am just taking a table from that postgreSQL and convert it to MySQL table
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 pg_dump 从单个表创建 SQL 转储并使用此转储作为 mysql 的输入。当您的 MySQL 数据库中已有表结构和
--column-inserts
来创建直接的 INSERT 语句时,请查看选项--data-only
。You can use pg_dump to create a SQL dump from a single table and use this dump as input for mysql. Take a look at the option
--data-only
when you already have the tablestructure in your MySQL database and--column-inserts
to create straight forward INSERT statements.像 SSIS、Pentaho、Talend 或其他几个这样的 ETL 工具就可以解决这个问题。大多数支持多种数据源和目标。
An ETL tool like SSIS, Pentaho, Talend or several others will do the trick. Most support a wide variety of data sources and destinations.