我想执行一个SQL脚本,该脚本将在Postgres中创建一个数据库。它产生消息:
bash: syntax error near unexpected token 'newline'
脚本为:
postgres@tom: /home/tom$ psql -1q test test <script.sql 2>
答案 0 :(得分:0)
如果要将标准错误重定向到标准输出,则应运行
psql -1q -d test -U test -f script.sql 2>&1