如何备份一些带有数据的表和一些仅模式的表 PostgreSQL

发布于 2024-11-26 19:29:48 字数 120 浏览 0 评论 0原文

我想转储数据库。

我有三个表:

table1 表2 table3

从 table1 我想要模式加数据。

从表2和表3我只想要模式。

我该怎么做?

I want to dump a database.

I have three tables:

table1
table2
table3

From table1 i want the schema plus data.

From table2 and table3 i just want the schema.

How do i do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

落叶缤纷 2024-12-03 19:29:48

要从几个表中获取数据:

pg_dump myDatabase --inserts -a -t table1 -t table2 >备份.sql;

pg_dump myDatabase --inserts -a -t seq1 -t seq2 >备份序列.sql;

参数说明:

-a, --data-only 仅转储数据,而不转储架构

-t, --table=TABLE 仅转储指定的表

--将转储数据插入为 INSERT 命令,而不是
复制

这就是我想要的:)

谢谢大家!

To get data from just a few tables:

pg_dump myDatabase --inserts -a -t table1 -t table2 > backup.sql;

pg_dump myDatabase --inserts -a -t seq1 -t seq2 > backupSequences.sql;

Parameters descriptions:

-a, --data-only dump only the data, not the schema

-t, --table=TABLE dump the named table(s) only

--inserts dump data as INSERT commands, rather than
COPY

This is what i wanted :)

Thanks all!

空城之時有危險 2024-12-03 19:29:48

使用pg_dump,它同时具有仅模式和模式+数据输出。

Use pg_dump, which has both schema-only and schema + data output.

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