From: | Guy Fraser <guy(at)incentre(dot)net> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: COPY TO order |
Date: | 2004-04-13 18:57:23 |
Message-ID: | 407C3813.8050400@incentre.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Ahh, I see.
Like this from the command line :
psql --no-align --tuples-only --field-separator , -c "select
data,comment from test_table order by test_id ;" database >/tmp/file
From psql prompt :
\a\t\f,
select data,comment from test_table order by test_id \g /tmp/file
\a\t\f|
Either way you should get a file {/tmp/file} contaning :
27,some kind of entry
32,another kind of entry
16,yet another entry
...
Clodoaldo Pinto Neto wrote:
> --- Guy Fraser <guy(at)incentre(dot)net>
>
>
>>If you have a 'serial' or 'bigserial' field like this :
>>
>>create table test_table (
>>test_id bigserial,
>>data integer,
>>comment text
>>);
>>
>>and you use :
>>
>>copy test_table (data,comment)
>>from '/wherever/the/file/is'
>>using delimiters ',';
>>
>>
>>to insert data like this :
>>
>>27,some kind of entry
>>32,another kind of entry
>>16,yet another entry
>>...
>>
>>Assuming this is the first set of data entered the table will get populated
>>with :
>>
>> 1 | 27 | some kind of entry
>> 2 | 32 | another kind of entry
>> 3 | 16 | yet another entry
>>...
>>
>>I have used this in the past and it works well.
>>
>>
>
>The problem I have is with COPY TO and not COPY FROM as I need to write a file.
>
>
...snip...
From | Date | Subject | |
---|---|---|---|
Next Message | Chris Kratz | 2004-04-13 19:36:55 | insert rule not firing on insert with exists subselect |
Previous Message | Michael Fuhr | 2004-04-13 18:35:39 | Join works in 7.3.6, fails in 7.4.2 |