- window
set pgpassword=密码
pg_dump -h 主机 -p 端口 -U 用户 -d 数据库 -t 表 -a > 文件地址 (只备份数据)
pg_dump -h 主机 -p 端口 -U 用户 -d 数据库 -t 表 -a > 文件地址 --column-inserts (只备份数据)
备份:
pg_dump -h localhost -U postgres tt > d:/the_backup.sql
恢复:
psql -h localhost -U postgres -p 5432 data < d:/cc.sql
- linux
export pgpassword=密码
pg_dump -h 主机 -p 端口 -U 用户 -d 数据库 -t 表 -a > 文件地址 (只备份数据)
pg_dump -h 主机 -p 端口 -U 用户 -d 数据库 -t 表 -a > 文件地址 --column-inserts (只备份数据)