将 PostgreSQL 转储转换为 MySQL 转储

发布于 2025-01-04 22:38:14 字数 502 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁梦 2025-01-11 22:38:14

您可以使用-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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文