gpt4 book ai didi

postgresql - 导出 Heroku Postgres 数据库,但排除表

转载 作者:行者123 更新时间:2023-11-29 11:36:54 26 4
gpt4 key购买 nike

我想导出我的 Heroku 应用程序的 Postgres 数据库,但我想排除一个表。这可能吗?

这是我用来导出整个 Postgres 数据库的命令:

$ PGUSER=my_username PGPASSWORD=my_password heroku pg:pull DATABASE_URL my-application-name`

也许有一种方法可以排除一个表,或者指定要包含的表列表?

最佳答案

在普通的 pg dump 命令中,您可以使用 -t 选项指定要包含的表,并使用 -T 选项排除表。

你能试试这个吗:

$  PGPASSWORD=mypassword pg_dump -Fc --no-acl --no-owner -T *table you want to exclude* -h localhost -U myuser mydb > mydb.dump

关于postgresql - 导出 Heroku Postgres 数据库,但排除表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33135982/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com