postgres 数据库备份(保证pg_dump的命令是全局的)

Posted myuniverse

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgres 数据库备份(保证pg_dump的命令是全局的)相关的知识,希望对你有一定的参考价值。

  • 数据库备份命令

    • window
    set pgpassword=密码
    pg_dump -h 主机 -p 端口 -U 用户 -d 数据库 -t 表 -a > 文件地址  (只备份数据)
    pg_dump -h 主机 -p 端口 -U 用户 -d 数据库 -t 表 -a > 文件地址 --column-inserts (只备份数据)
    • linux
    export pgpassword=密码
    pg_dump -h 主机 -p 端口 -U 用户 -d 数据库 -t 表 -a > 文件地址  (只备份数据)
    pg_dump -h 主机 -p 端口 -U 用户 -d 数据库 -t 表 -a > 文件地址 --column-inserts (只备份数据)

以上是关于postgres 数据库备份(保证pg_dump的命令是全局的)的主要内容,如果未能解决你的问题,请参考以下文章

postgres 文件系统级别的备份 pg_dump

postgres数据库备份

Flyway 的 pg_dump 备份失败(在 Spring Boot 中)

如何使用命令行备份 postgres 数据库

PostgreSQL 备份与还原命令 pg_dump

当端口 5432 被阻塞时,来自远程服务器的 pg_dump postgres 数据库