Thread: Error in using copy command

Error in using copy command

From
Sindile Bidla
Date:

I get the following error on running COPY - array value must start with "{" or dimension information CONTEXT: copy tablename, line 1, column field1: ""1"".

the structure of the csv file is: "1","1","BLOEMSMOND SETTLEMENT AGRICULTURAL HOLDING","00000","","","T618/1943","6.3870 H","NORTHERN CAPE","","*"

my copy command looks is: COPY tablename FROM myfile DELIMITER ',';

Re: Error in using copy command

From
Michael Wood
Date:
On 11 May 2011 14:09, Sindile Bidla <sindile.bidla@gmail.com> wrote:
>
> I get the following error on running COPY - array value must start with "{"
> or dimension information CONTEXT: copy tablename, line 1, column field1:
> ""1"".
> the structure of the csv file is: "1","1","BLOEMSMOND SETTLEMENT
> AGRICULTURAL HOLDING","00000","","","T618/1943","6.3870 H","NORTHERN
> CAPE","","*"
> my copy command looks is: COPY tablename FROM myfile DELIMITER ',';

Try:

COPY tablename FROM 'myfile'
DELIMITER ','
CSV QUOTE '"' ESCAPE '\';

(ESCAPE might be wrong depending on what your CSV looks like if one of
the fields contains a " character.)

--
Michael Wood <esiotrot@gmail.com>

Re: Error in using copy command

From
Michael Wood
Date:
On 11 May 2011 14:28, Michael Wood <esiotrot@gmail.com> wrote:
> On 11 May 2011 14:09, Sindile Bidla <sindile.bidla@gmail.com> wrote:
>>
>> I get the following error on running COPY - array value must start with "{"
>> or dimension information CONTEXT: copy tablename, line 1, column field1:
>> ""1"".
>> the structure of the csv file is: "1","1","BLOEMSMOND SETTLEMENT
>> AGRICULTURAL HOLDING","00000","","","T618/1943","6.3870 H","NORTHERN
>> CAPE","","*"
>> my copy command looks is: COPY tablename FROM myfile DELIMITER ',';
>
> Try:
>
> COPY tablename FROM 'myfile'
> DELIMITER ','
> CSV QUOTE '"' ESCAPE '\';
>
> (ESCAPE might be wrong depending on what your CSV looks like if one of
> the fields contains a " character.)

Sorry, should be:

...
ESCAPE E'\\'

if you want to use a single \ as an escape character.

--
Michael Wood <esiotrot@gmail.com>

Re: Error in using copy command

From
Sindile Bidla
Date:
I have modified my command to: COPY tablename FROM 'myfile' DELIMITER ',' CSV QUOTE '"' ESCAPE E'\\';

following your suggestion but I am still getting the same error

On 11 May 2011 14:34, Michael Wood <esiotrot@gmail.com> wrote:
On 11 May 2011 14:28, Michael Wood <esiotrot@gmail.com> wrote:
> On 11 May 2011 14:09, Sindile Bidla <sindile.bidla@gmail.com> wrote:
>>
>> I get the following error on running COPY - array value must start with "{"
>> or dimension information CONTEXT: copy tablename, line 1, column field1:
>> ""1"".
>> the structure of the csv file is: "1","1","BLOEMSMOND SETTLEMENT
>> AGRICULTURAL HOLDING","00000","","","T618/1943","6.3870 H","NORTHERN
>> CAPE","","*"
>> my copy command looks is: COPY tablename FROM myfile DELIMITER ',';
>
> Try:
>
> COPY tablename FROM 'myfile'
> DELIMITER ','
> CSV QUOTE '"' ESCAPE '\';
>
> (ESCAPE might be wrong depending on what your CSV looks like if one of
> the fields contains a " character.)

Sorry, should be:

...
ESCAPE E'\\'

if you want to use a single \ as an escape character.

--
Michael Wood <esiotrot@gmail.com>



--
Sindile Bidla
Tel: 0823408538
Fax: 0865246419

Re: Error in using copy command

From
Michael Wood
Date:
On 11 May 2011 15:07, Sindile Bidla <sindile.bidla@gmail.com> wrote:
> I have modified my command to: COPY tablename FROM 'myfile' DELIMITER ','
> CSV QUOTE '"' ESCAPE E'\\';
> following your suggestion but I am still getting the same error

What is the table definition?

> On 11 May 2011 14:34, Michael Wood <esiotrot@gmail.com> wrote:
>>
>> On 11 May 2011 14:28, Michael Wood <esiotrot@gmail.com> wrote:
>> > On 11 May 2011 14:09, Sindile Bidla <sindile.bidla@gmail.com> wrote:
>> >>
>> >> I get the following error on running COPY - array value must start with
>> >> "{"
>> >> or dimension information CONTEXT: copy tablename, line 1, column
>> >> field1:
>> >> ""1"".
>> >> the structure of the csv file is: "1","1","BLOEMSMOND SETTLEMENT
>> >> AGRICULTURAL HOLDING","00000","","","T618/1943","6.3870 H","NORTHERN
>> >> CAPE","","*"
>> >> my copy command looks is: COPY tablename FROM myfile DELIMITER ',';
>> >
>> > Try:
>> >
>> > COPY tablename FROM 'myfile'
>> > DELIMITER ','
>> > CSV QUOTE '"' ESCAPE '\';
>> >
>> > (ESCAPE might be wrong depending on what your CSV looks like if one of
>> > the fields contains a " character.)
>>
>> Sorry, should be:
>>
>> ...
>> ESCAPE E'\\'
>>
>> if you want to use a single \ as an escape character.

--
Michael Wood <esiotrot@gmail.com>

Re: Error in using copy command

From
Sindile Bidla
Date:
It works and thank you

On 11 May 2011 15:42, Michael Wood <esiotrot@gmail.com> wrote:
On 11 May 2011 15:07, Sindile Bidla <sindile.bidla@gmail.com> wrote:
> I have modified my command to: COPY tablename FROM 'myfile' DELIMITER ','
> CSV QUOTE '"' ESCAPE E'\\';
> following your suggestion but I am still getting the same error

What is the table definition?

> On 11 May 2011 14:34, Michael Wood <esiotrot@gmail.com> wrote:
>>
>> On 11 May 2011 14:28, Michael Wood <esiotrot@gmail.com> wrote:
>> > On 11 May 2011 14:09, Sindile Bidla <sindile.bidla@gmail.com> wrote:
>> >>
>> >> I get the following error on running COPY - array value must start with
>> >> "{"
>> >> or dimension information CONTEXT: copy tablename, line 1, column
>> >> field1:
>> >> ""1"".
>> >> the structure of the csv file is: "1","1","BLOEMSMOND SETTLEMENT
>> >> AGRICULTURAL HOLDING","00000","","","T618/1943","6.3870 H","NORTHERN
>> >> CAPE","","*"
>> >> my copy command looks is: COPY tablename FROM myfile DELIMITER ',';
>> >
>> > Try:
>> >
>> > COPY tablename FROM 'myfile'
>> > DELIMITER ','
>> > CSV QUOTE '"' ESCAPE '\';
>> >
>> > (ESCAPE might be wrong depending on what your CSV looks like if one of
>> > the fields contains a " character.)
>>
>> Sorry, should be:
>>
>> ...
>> ESCAPE E'\\'
>>
>> if you want to use a single \ as an escape character.

--
Michael Wood <esiotrot@gmail.com>