将 PostgreSQL 转储转换为 MySQL 转储
我有一个 Postgres 转储文件,我需要将其转换为 MySQL 转储,以便我可以创建匹配的 MySQL 数据库。我是 Postgres 的新手,我已将它安装在我的 Ubuntu 服务器上,我想看看是否可以导入和导出某种 SQL。我不知道该怎么做。
这是我尝试过的命令:
pg_dump -Fc --no-acl --no-owner -h localhost -U dbuser testdb > b526.dump
这不会出错,但我认为没有发生任何事情:
testdb=# \dt;
No relations found.
testdb=# \d
No relations found.
testdb=# \t
Showing only tuples.
testdb=# \d
另外,我希望有一种更简单的方法将此 .dump 转换为 MySQL 转储。
I have a Postgres dump file and I need to turn it into a MySQL dump so I can create a matching MySQL database. I am new to Postgres I have it installed on my Ubuntu server and I was going to see whether I could import and export SQL of some sort. I don't know how to do that.
Here is the command I tried:
pg_dump -Fc --no-acl --no-owner -h localhost -U dbuser testdb > b526.dump
This doesn't error but I don't think anything happened:
testdb=# \dt;
No relations found.
testdb=# \d
No relations found.
testdb=# \t
Showing only tuples.
testdb=# \d
Also, I would appreciate an easier way to turn this .dump into a MySQL dump.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
-Fp
(plain)以纯文本格式保存PostgreSQL数据库的数据,但是之后您必须进行一些手动转换,因为PostgreSQL包含许多对SQL语言的非标准扩展。但是,如果您已经转换了架构,则数据转储应该基本上是兼容的。
我建议使用像 SquirrelSQL 这样的工具。它支持从一种数据库到另一种数据库的转换。
You can save the data of the PostgreSQL database in plain text format with
-Fp
(plain), but you will have to do some manual conversion afterwards, since PostgreSQL contains many non-standard extensions to the SQL language.However, if you already converted the schema, a data dump should be mostly compatible.
I recommend to use a tool like SquirrelSQL. It supports conversions from one database to another.