"Monica Robustelli" <[EMAIL PROTECTED]> writes: > If I transfer the backup file to another Linux machine, Red Hat 9, Postgres > 7.3, I'v some problem during the database restoring. The error is:
> ERROR: copy: line 13, CopyReadAttribute: end of record marker corrupted A likely bet is that you transferred the dump file in a manner that converted Unix newlines (\n) to Windows newlines (\r\n). COPY does not tolerate that (in releases before 7.4 anyway). regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match