Re: [GENERAL] pgsql and streams

2006-04-03 Thread Christopher Condit
Tino Wildenhain [mailto:[EMAIL PROTECTED] Sent: Thursday, March 30, 2006 1:07 AM To: Christopher Condit Cc: pgsql-general Subject: Re: [GENERAL] pgsql and streams Christopher Condit schrieb: > Back to this thread - I realize that in the "COPY TO" documentation, it > states the CSV file

Re: [GENERAL] pgsql and streams

2006-03-30 Thread Christopher Condit
Sent: Thursday, March 30, 2006 1:07 AM To: Christopher Condit Cc: pgsql-general Subject: Re: [GENERAL] pgsql and streams Christopher Condit schrieb: > Back to this thread - I realize that in the "COPY TO" documentation, it > states the CSV file used for loading must be on the

Re: [GENERAL] pgsql and streams

2006-03-30 Thread Tino Wildenhain
Christopher Condit schrieb: Back to this thread - I realize that in the "COPY TO" documentation, it states the CSV file used for loading must be on the server's disk. If I can't put files on the server's disk, I'm curious if I can use the STDIN option from my JDBC client to load the data to the

Re: [GENERAL] pgsql and streams

2006-03-30 Thread Christopher Condit
the server? Using psql I can stream data after the call. Is there anyway to accomplish the same thing with JDBC? Thanks! Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Condit Sent: Tuesday, March 14, 2006 4:10 PM To: pgsql-general Subjec

Re: [GENERAL] pgsql and streams

2006-03-15 Thread Richard Huxton
Christopher Condit wrote: Thanks for your response, Josh. Actually I'm looking for the most general way to do this, since my remote database might not be psql. In fact, I will probably be streaming through a java process. So I'd like to go from the java process directly into the psql db. Is i

Re: [GENERAL] pgsql and streams

2006-03-14 Thread Christopher Condit
?   From: Josh Rovero [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 14, 2006 4:34 PM To: Christopher Condit; pgsql-general Subject: Re: [GENERAL] pgsql and streams   Chris Condit wrote: I'm new to Postgres and have a question about bulk loading from streams. I know that

Re: [GENERAL] pgsql and streams

2006-03-14 Thread Josh Rovero
Chris Condit wrote:I'm new to Postgres and have a question about bulk loading from streams.I know that I can bulk load from a file using COPY. Is it possible touse a stream instead of a file? If so, and I limited to stdin? I'mattempting to stream data from a remote database into my Postgresi

[GENERAL] pgsql and streams

2006-03-14 Thread Christopher Condit
Hi All- I'm new to Postgres and have a question about bulk loading from streams. I know that I can bulk load from a file using COPY. Is it possible to use a stream instead of a file? If so, and I limited to stdin? I'm attempting to stream data from a remote database into my Postgres instance. I