Re: COPY (query) TO file - Mailing list pgsql-hackers

From PFC
Subject Re: COPY (query) TO file
Date
Msg-id op.takrxfn7cigqcu@apollo13
Whole thread Raw
In response to Re: COPY (query) TO file  (Greg Stark <gsstark@mit.edu>)
List pgsql-hackers

>>     MySQL already does this for INSERT :
>>     INSERT INTO x (a,b) VALUES (1,2), (3,4), (5,6)...;
>
> Does MySQL really let you stream that? Trying to do syntax like that in
> Postgres wouldn't work because the parser would try to build up a parse  
> tree
> for the whole statement before running the command.
Hehe, I don't know, but I suppose it's parsed in one-shot then executed,  
and not streamed, because :- you can append modifiers at the end of the statement (IGNORE...),- mysql barfs if the
completeSQL including data is larger than the query  
 
buffer specified in the config file.
The second point leads to an interesting fact, ie. dumps generated by  
phpmyadmin and mysqldump need a parameter specifying how long, in bytes,  
the insert commands can be ; so that hopefully they can be reloaded later.If one of the inserted values violates a
"constraint",it is substituted  
 
by "some other default value".
Still, it's useful ; and one interesting part is that everything happens  
in the same SQL command (wrt concurrency).



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: COPY (query) TO file
Next
From: PFC
Date:
Subject: Faster Updates