Postgresql通过批处理命令执行sql文件

时间:2022-09-02 23:48:32

1、把要执行的sql保存为sqlCode.sql

需要注意的是编码格式最好为ANSI的,之前遇到过UTF-8在有些电脑有失败的情况

2、编写excuteSql.bat文件

该文件的内容为

set current_path="%cd%"
cd /d %current_path%
psql -h 127.0.0.1 -U postgres -d 数据库名称 -f sqlCode.sql
pause

3、把excuteSql.bat文件和sqlCode.sql文件放到postgresql的bin目录下。

4、双击executeSql.bat文件即可