In Postgres, "\N" is used as a substitute symbol for a NULL value.
But all the psql commands start with backslash "\" symbol. Therefore, you may get the messages like a copy statement fails, but the loading of dump continues. This message will be a false alarm.
You need to search the lines before, for the reason why the COPY statement fails.
It's possible to switch psql to "stop on first error" mode and to find error like this:
psql -v ON_ERROR_STOP=1
If you wish to learn SQL then visit this SQL Training.