将 PostgreSQL 数据库迁移到 MySQL
假设我想将 Heroku 上的 PostgreSQL 数据库迁移到 EC2 上的 MySQL,并且需要保留所有表中的 ID 值,那么在不使用付费软件的情况下实现这一目标的最佳方法是什么?
Say that I want to migrate a PostgreSQL database on Heroku to MySQL on EC2 and I need to preserve the ID values in all the tables, what's the best way to accomplish that without using paid software?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很简单。
我将在本地拥有 mySQL 实例,heroku db:pull 将其从 Heroku Postgres 获取到本地开发 mySQL 实例,备份它,然后将备份恢复到您的 EC2 MySQL 实例
It's quite simple.
I would have mySQL instance locally, heroku db:pull to get it from Heroku Postgres to your local development mySQL instance, back it up and then restore the backup to your EC2 MySQL instance