如何保存PostgreSQL架构?

时间:2013-02-24 10:57:32

标签: postgresql schema

我需要将PostgreSQL数据库的模式发送给客户 我怎么能这样做?
我在db目录中找不到它。

1 个答案:

答案 0 :(得分:8)

最好使用pg_dump实用程序导出架构并在另一台机器上加载:

pg_dump -U postgres --schema-only db_name > file.txt

然后您可以使用psql实用程序

将其加载到另一台计算机/实例上
psql -U postgres db_name < file.txt