Looks like you already have the answer. The
error message is a dead giveaway. Some field, in this case having a null
value (represented as '\N') contains a carriage return character, like:
'\NCR'. PostgreSQL cannot make sense out of this combination, so it
returns an error. The CR contained in the error message causes the output
to return to the start of the line, outputting the rest of the message from the
beginning: see how the final " ' " overwrites the "p" in "psql".
Edit out the CR characters, and the problem will go
away.
This is what Tom already said; I am expanding on
it.
|
- [GENERAL] problems transfering databases Miroslav Koncar
- Re: [GENERAL] problems transfering databases Tom Lane
- [GENERAL] Re: problems transfering databases Jeff Eckermann
- [GENERAL] Re: problems transfering databases Jeff Eckermann
- Re: [GENERAL] problems transfering databases Miroslav Koncar
- Re: [GENERAL] problems transfering databases Tom Lane
- Re: [GENERAL] problems transfering databases Jeff Eckermann