Re: Preferred usage for 'copy to' for a subset of data - Mailing list pgsql-general

From Tom Lane
Subject Re: Preferred usage for 'copy to' for a subset of data
Date
Msg-id 21873.1189746106@sss.pgh.pa.us
Whole thread Raw
In response to Preferred usage for 'copy to' for a subset of data  ("Jason L. Buberel" <jason@buberel.org>)
List pgsql-general
"Jason L. Buberel" <jason@buberel.org> writes:
> For recent postgres releases, is there any effective difference
> (performance/memory/io) between:

> create temp table foo as select * from bar where bar.date > '2007-01-01';
> copy foo to '/tmp/bar.out';
> drop table temp;

> and this:

> copy ( select * from bar where bar.date > '2007-01-01' ) to '/tmp/bar.out';

Surely the latter will be faster, since it doesn't bother to store all
the data in a server temp table.

            regards, tom lane

pgsql-general by date:

Previous
From: "Jason L. Buberel"
Date:
Subject: Preferred usage for 'copy to' for a subset of data
Next
From: Stefan Schwarzer
Date:
Subject: Re: Database/Table Design for Global Country Statistics