PostgreSQL数据库bat文件的制作

前端之家收集整理的这篇文章主要介绍了PostgreSQL数据库bat文件的制作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
1.建库、建表(create.bat)
set path = C: Program Files Postgresql 8.2 bin
createdb数据库
psql-f表名1
. sql-Upostgres数据库
psql-f表名2
sql-Upostgres数据库
psql-f表名3
sql-Upostgres数据库
...

2.备份、还原(backup.bat)
bin
yy % date :~ 0 , 4 %
mm 5 2 dd 8 mkdir data_backup
pg_dump-Fc-i-EUTF8-O-x-hlocalhost-Upostgres-fC:
data_backup %yy%%mm%%dd% backup 数据库

cd data_backup
edit%yy%%mm%%dd%
bat
echo bin ;>> pg_restore-c-d数据库名-hlocalhost-UpostgresC: >> bat

注:反斜线被转换掉,请在相应位置自行加上 原文链接:https://www.f2er.com/postgresql/197430.html

猜你在找的Postgre SQL相关文章