psql invalid command \N while restore sql

前端 未结 14 882
后悔当初
后悔当初 2020-12-04 15:54

I\'m trying to restore my dump file, but it caused an error:

psql:psit.sql:27485: invalid command \\N

Is there a solution? I searched, but

14条回答
  •  星月不相逢
    2020-12-04 16:39

    Postgres uses "\N" as substitute symbol for NULL value. But all psql commands start with a backslash "" symbol. You can get these messages, when a copy statement fails, but the loading of dump continues. This message is a false alarm. You have to search all lines prior to this error if you want to see the real reason why COPY statement failed.

    Is possible to switch psql to "stop on first error" mode and to find error:

    psql -v ON_ERROR_STOP=1
    

提交回复
热议问题