COPY FROM STDIN not in local file

Started by Josh Closeover 21 years ago3 messagesgeneral
Jump to latest
#1Josh Close
narshe@gmail.com

Is there a way to do COPY FROM STDIN from sql? So, remotely I could
run the copy command and somehow push the info over instead of having
it on the server.

-Josh

#2Bruce Momjian
bruce@momjian.us
In reply to: Josh Close (#1)
Re: COPY FROM STDIN not in local file

You have to use psql's \copy.

---------------------------------------------------------------------------

Josh Close wrote:

Is there a way to do COPY FROM STDIN from sql? So, remotely I could
run the copy command and somehow push the info over instead of having
it on the server.

-Josh

---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
#3Josh Close
narshe@gmail.com
In reply to: Josh Close (#1)
Re: COPY FROM STDIN not in local file

On Wed, 29 Sep 2004 14:40:34 -0500, Josh Close <narshe@gmail.com> wrote:

Is there a way to do COPY FROM STDIN from sql? So, remotely I could
run the copy command and somehow push the info over instead of having
it on the server.

For those who are curious, I found a php implementation of this. It
uses the postgre put_line function.

<?php
$conn = pg_pconnect("dbname=foo");
pg_query($conn, "create table bar (a int4, b char(16), d float8)");
pg_query($conn, "copy bar from stdin");
pg_put_line($conn, "3\thello world\t4.5\n");
pg_put_line($conn, "4\tgoodbye world\t7.11\n");
pg_put_line($conn, "\\.\n");
pg_end_copy($conn);
?>

-Josh