如何用数据备份一些表,而只有一些表用PostgreSQL模式备份

前端之家收集整理的这篇文章主要介绍了如何用数据备份一些表,而只有一些表用PostgreSQL模式备份前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想转储数据库.

我有三张桌子:

表格1
表2
表3

从table1我想要架构加数据.

从table2和table3我只想要架构.

我怎么做?

要从几个表中获取数据:

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

这就是我想要的:)

谢谢大家!

原文链接:https://www.f2er.com/postgresql/192012.html

猜你在找的Postgre SQL相关文章