标签: postgresql schema
我需要将PostgreSQL数据库的模式发送给客户 我怎么能这样做? 我在db目录中找不到它。
答案 0 :(得分:8)
最好使用pg_dump实用程序导出架构并在另一台机器上加载:
pg_dump -U postgres --schema-only db_name > file.txt
然后您可以使用psql实用程序
psql -U postgres db_name < file.txt