我已经看到了反向操作的问题,但是我有一个 800MB 的 PostgreSQL 数据库需要转换为 MySQL。我假设这是可能的(一切皆有可能!),我想知道解决此问题的最有效方法以及需要注意的任何常见错误。我几乎没有使用 Postgre 的经验。任何指向这方面指南的链接也会有所帮助!谢谢。
thesmallprint
问问题
9578 次
3 回答
6
于 2008-09-21T00:18:52.983 回答
4
You should not convert to new database engine based solely on the fact that you do not know the old one. These databases are very different - MySQL is speed and simplicity, Postgres is robustness and concurrency. It will be easier for you to learn Postgres, it is not that hard.
于 2008-09-22T12:28:03.737 回答
2
pg_dump 可以将转储作为插入语句和创建表语句。那应该让你接近。然而,更大的问题是你为什么要切换。你可能做了很多工作,却没有从中获得任何真正的收益。
于 2008-09-22T18:39:11.020 回答