postgis中将数据库备份到其它数据库中还原

1、备份数据库

postgis中将数据库备份到其它数据库中还原_第1张图片

postgis中将数据库备份到其它数据库中还原_第2张图片
可以用命令操作

pg_dump -U postgres -h hostip -d joint-boot -Fc > "D:\\python\\Project\\PG\\data\\joint.jar"

2、创建新的数据库

可以在其它postgis数据库中创建
postgis中将数据库备份到其它数据库中还原_第3张图片

3、还原数据库

postgis中将数据库备份到其它数据库中还原_第4张图片
postgis中将数据库备份到其它数据库中还原_第5张图片

可以用命令操作

pg_restore -U postgres -h hostip -d C -Fc -C "D:\\python\\Project\\PG\\data\\joint.jar"

你可能感兴趣的:(MySQL,postgresq,MongoDB,Redis,数据库)