导入和导出postgresql数据库脚本

导入和导出postgresql数据库脚本_第1张图片

导出

/usr/bin/pg_dump -U postgres testdb > /home/app/testdb`date +%Y%m%d`.sql

cd /home/app

gzip testdb`date +%Y%m%d`.sql

导入

day=`date +%Y%m%d`

drop database testdb;//删除原来的库

CREATE DATABASE testdb;

psql -U postgres -d testdb -f /home/app/testdb${day}.sql

你可能感兴趣的:(导入和导出postgresql数据库脚本)