sh Postgres备份

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Postgres备份相关的知识,希望对你有一定的参考价值。

# --dbname is necessary because you have to add the name of a valid database 
# to initially connect to or it will just dump the contents to STDOUT:
pg_restore --create --exit-on-error --verbose --dbname=ali dump.bak
# -O and -x drop privalages and owners on database
pg_dump cap -U postgres -h localhost -Fc -p 9000 -O -x --verbose > dump.bak

以上是关于sh Postgres备份的主要内容,如果未能解决你的问题,请参考以下文章

shell编程连接postgres数据库(数据备份)

Postgres数据库备份

Centos7 备份 PostgreSQL 数据脚本

postgres数据库备份

sh postgres.sh

使用 Postgres JDBC 恢复数据库中的 postgres 备份数据(数据库名称包含空格)