Het is duidelijk dat u een CSV-bestand hebt terwijl u het als tekstformaat probeert te importeren. Gebruik voor Postgres 9.1 of nieuwer:
COPY sample FROM '/tmp/sample.csv' (FORMAT csv);
Het standaard scheidingsteken voor CSV-indeling is de komma (,
) hoe dan ook. Meer in de handleiding
.
Voor PostgreSQL 8.4 of ouder:
COPY sample FROM '/tmp/sample.csv' CSV;