| From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> | 
|---|---|
| To: | Valerie Goodman <val(at)webtribe(dot)net> | 
| Cc: | Christoph Haller <ch(at)rodos(dot)fzk(dot)de>, pgsql-sql(at)postgresql(dot)org | 
| Subject: | Re: Copy from a SELECT | 
| Date: | 2003-03-06 20:21:50 | 
| Message-ID: | 200303062021.h26KLof27347@candle.pha.pa.us | 
| Views: | Whole Thread | Raw Message | Download mbox | Resend email | 
| Thread: | |
| Lists: | pgsql-sql | 
I would suggest creating a view and copying that, but views can't be
copied.
The basic limitation is that COPY deals with data at the heap level,
rather than as a query result/source.  Of course, this is done to make
it fast.
---------------------------------------------------------------------------
Valerie Goodman wrote:
> That's exactly what I don't want to do.
> 
> I've got *very* limited HDD space for the amount of information I need to
> copy out.  The place to where the CSV file is would be output is NTFS and
> from the Postgres documentation, it states that I should not put the table
> oid files there and link in order to free up space in the default drive.
> 
> I've tried using \o to stream the output to a file on the NTFS area, but the
> machine ran out of memory (memory = 2G).
> 
> I was looking for a work around to copy out the section of data I wanted to
> a temporary table and then copy that table out .....
> 
> 
> 
> -----Original Message-----
> From: pgsql-sql-owner(at)postgresql(dot)org
> [mailto:pgsql-sql-owner(at)postgresql(dot)org]On Behalf Of Christoph Haller
> Sent: 27 February 2003 12:45
> To: pgsql-sql(at)postgresql(dot)org
> Cc: val(at)webtribe(dot)net
> Subject: Re: [SQL] Copy from a SELECT
> 
> 
> >
> > I know that the COPY command requires that you work with plain
> > tables.
> >
> > Is there any other way at all of export only part of a table
> >
> What about
> CREATE [ possibly TEMPORARY ]TABLE table_name AS <your-query>
> and then COPY ...
> 
> Regards, Christoph
> 
> 
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
>     (send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)
> 
> 
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
> 
-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman(at)candle(dot)pha(dot)pa(dot)us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Mark Mitchell | 2003-03-06 23:25:29 | Cancelling Queries | 
| Previous Message | Bruce Momjian | 2003-03-06 19:53:30 | Re: Relation "pg_relcheck" |