Re: COPY from stdin;

Поиск
Список
Период
Сортировка
От John DeSoi
Тема Re: COPY from stdin;
Дата
Msg-id 35c04e10f1d86e8883ac52174952271e@pgedit.com
обсуждение исходный текст
Ответ на COPY from stdin;  ("Peter Schonefeld" <peter.schonefeld@bigpond.com>)
Список 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 по дате отправления:

Предыдущее
От: Andres Ledesma
Дата:
Сообщение: Re: concepts?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: concepts?