Re: COPY from stdin; - Mailing list pgsql-novice

From John DeSoi
Subject Re: COPY from stdin;
Date
Msg-id 35c04e10f1d86e8883ac52174952271e@pgedit.com
Whole thread Raw
In response to COPY from stdin;  ("Peter Schonefeld" <peter.schonefeld@bigpond.com>)
List pgsql-novice
On May 16, 2005, at 11:40 AM, Peter Schonefeld wrote:

> Hi, I'm curious as to how to get the following snippet from a backup
> file to
> run as a script?
>
> COPY country (id, name) FROM stdin;
> 1    Afghanistan
> 2    Albania
> 3    Algeria
> 4    American Samoa
> 5    Andorra
> 6    Angola
>


Assuming you have tabs there between the values, just put it in a file
and execute it with psql (same way it is used in a backup file).

psql -f thefile database

If you want to have other commands after this in the file, put \. on a
line by itself after the last row:

6    Angola
\.



John DeSoi, Ph.D.
http://pgedit.com/
Power Tools for PostgreSQL


pgsql-novice by date:

Previous
From: Andres Ledesma
Date:
Subject: Re: concepts?
Next
From: Tom Lane
Date:
Subject: Re: concepts?