postgres 导出单个表的语句
Posted zxy-come-on
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgres 导出单个表的语句相关的知识,希望对你有一定的参考价值。
-U表示用户
-h表示主机
-p表示端口号
-t表示表名
-f表示备份后的sql文件的名字
-d表示要恢复数据库名称
1.备份单表操作
?
pg_dump -U postgres -h localhost -p 5432 -t staff -f /home/staff.sql yjl(表示数据库名称)
2.恢复数据操作
psql -U postgres -h localhost -p 5432 -d product -f /home/yjl/staff.sql
pg_dump -U postgres -h localhost -p 19200 -t tb_bookinfo -f /home/tb_bookinfo20190822 .sql zgsw
例子:
Postgres 导出备份的步骤:
登录数据库服务器
切换用户:su postgres
直接执行:pg_dump –U postgres -h localhost -p 19200 -t tb_bookinfo -f /home/tb_bookinfo20190822 .sql 【数据库名称】
生成的备份文件为:/home/tb_bookinfo20190822 .sql
以上是关于postgres 导出单个表的语句的主要内容,如果未能解决你的问题,请参考以下文章
使用postgre数据库实现树形结构表的子-父级迭代查询,通过级联菜单简单举例