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
My solution was this:
psql -U your_user your_db < your.file.here.sql 2>&1|more
this way I could read the error message
I hope this helps anybody.