I have a pipe delimited file that I'm importing into Postgres (9.2.8) using the command:
COPY schema.tablename FROM '/path/to/file.csv' DELIMITERS '|' CSV
It has been working reliably for a while, but just choked on:
Query failed: ERROR: invalid input syntax for type timestamp: "Sep 24 2013 12:00:00:000AM"
That looks like a valid timestamp to me. Any suggestions?