Re: Restrict number of connections to specific table

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Restrict number of connections to specific table
Дата
Msg-id 20359.1399991258@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Restrict number of connections to specific table  ("Sam Franklin" <Sam.Franklin@senergyworld.com>)
Ответы Re: Restrict number of connections to specific table
Re: Restrict number of connections to specific table
Список pgsql-novice
"Sam Franklin" <Sam.Franklin@senergyworld.com> writes:
> I have some licenced geospatial data. The licence terms state that only
> "one user can access the data at one time".

> Can I put a constraint on a specific table to restrict the number of
> concurrent connections to 1, which will allow me to adhere to the data
> licencing terms?

Not on a specific table.  You could possibly use a dedicated Postgres
instance with max_connections set to 1.  If you need to serialize access
to just this table while allowing concurrent access to some other data
in the same DB, then there's no built-in answer.

            regards, tom lane


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

Предыдущее
От: Keith
Дата:
Сообщение: Re: Restrict number of connections to specific table
Следующее
От: "Sam Franklin"
Дата:
Сообщение: Re: Restrict number of connections to specific table