在Ubuntu Linux上执行PostgreSQL SQL脚本时出现问题

时间:2019-03-27 10:18:26

标签: postgresql ubuntu sh

我想执行一个SQL脚本,该脚本将在Postgres中创建一个数据库。它产生消息:

bash: syntax error near unexpected token 'newline'

脚本为:

 postgres@tom: /home/tom$ psql -1q test test <script.sql 2>

1 个答案:

答案 0 :(得分:0)

如果要将标准错误重定向到标准输出,则应运行

psql -1q -d test -U test -f script.sql 2>&1