Re: Problem: Temporary tables not really temporary tables

Поиск
Список
Период
Сортировка
От David G Johnston
Тема Re: Problem: Temporary tables not really temporary tables
Дата
Msg-id 1423582244241-5837377.post@n5.nabble.com
обсуждение исходный текст
Ответ на Problem: Temporary tables not really temporary tables  (Florian Schaetz <Florian.Schaetz@Optitool.DE>)
Список pgsql-novice
Florian Schaetz wrote
> Hello,
>
> I've got a little problem with my postgresql/postgis server here:
> Sometimes, temporary tables (sessions?) seem to "survive", which in the
> end leads to a shared memory error, that can only be resolved by
> restarting (for a moment). This stops the shared memory error for a
> moment, but the sessions (and with them, the tables) are still there, even
> if there aren't any open connections left.
>
> Ironically, rebooting the server completely does NOT resolve it all, only
> restarting the database does. I assume that the error occurs when the
> connection to a client closes incorrectly or something like that...
>
> In the end I have to clean up the whole mess manually with...
>
> drop schema pg_temp_
> <sess_id>
>  cascade;
>
> But how can I prevent such sessions to survive or at least have them
> cleaned up automatically?

The first thing to do is let the computer speak to us directly instead of
you paraphrasing what it is saying to you.  Error messages, schema
information and the like are all necessary pieces of data it needs to tell
us.

It should also introduce itself and tell us where it lives.

David J.




--
View this message in context:
http://postgresql.nabble.com/Problem-Temporary-tables-not-really-temporary-tables-tp5837328p5837377.html
Sent from the PostgreSQL - novice mailing list archive at Nabble.com.


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Problem: Temporary tables not really temporary tables
Следующее
От: Daniel Staal
Дата:
Сообщение: Re: Who should own database?