I\'m trying to import data from a .csv file into a postgresql 9.2 database using the psql \\COPY command (not the SQL COPY).
psql \\COPY
The input .csv file contains
The date style you seem to be using is German. PostgreSQL supports this date style. Try using this:
SET datestyle TO German;