Ive created some CSV files to bulk import into Postgres 9.2 with the COPY command, but I have a problem because one of the fields in the Postgres table is an array datatype.
Is it possible to import data with COPY into an array datatype, i have both integer and text arrays ?
CREATE TABLE artist (
id integer NOT NULL,
name text NOT NULL,
realname text,
urls text[],
namevariations text[],
aliases text[],
releases integer[],
profile text,
members text[],
groups text[],
data_quality text
);
varchar[]or e.g.integer[]? Please edit your question and add thecreate tablestatement.