Re: Making dirty reads possible?

Поиск
Список
Период
Сортировка
От Greg Stark
Тема Re: Making dirty reads possible?
Дата
Msg-id 878y8b15gp.fsf@stark.xeocode.com
обсуждение исходный текст
Ответ на Making dirty reads possible?  (pgsql-sql@vankoperen.nl)
Ответы Re: Making dirty reads possible?
Список pgsql-sql
pgsql-sql@vankoperen.nl writes:

> But not possible for real at the moment?
> 
> So, summarising:
> - Nested transactions is not (yet) supported
> - READ UNCOMMITTED isolation level is not (yet) supported
> - the EXECUTE plpgsql construct does not circumvent the transaction

Well nested transactions are in 8.0 but I don't think they help you much.

I find I've been stymied using server-side functions for large batch jobs for
pretty much the same reason. I find it works better and it's more flexible to
write client-side programs in the language of my choice that connect to the
database and do the batch jobs.

They can output progress logs or keep information about their progress in some
shared space. They can also control the transaction more freely committing in
the middle of the job if it's safe.

-- 
greg



В списке pgsql-sql по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Set Returning Function problem
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: Making dirty reads possible?