Re: COPY (query) TO file

Поиск
Список
Период
Сортировка
От PFC
Тема Re: COPY (query) TO file
Дата
Msg-id op.takrxfn7cigqcu@apollo13
обсуждение исходный текст
Ответ на Re: COPY (query) TO file  (Greg Stark <gsstark@mit.edu>)
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: COPY (query) TO file
Следующее
От: PFC
Дата:
Сообщение: Faster Updates