Re: schema or database

Поиск
Список
Период
Сортировка
От Albe Laurenz
Тема Re: schema or database
Дата
Msg-id A737B7A37273E048B164557ADEF4A58B365CC78D@ntex2010i.host.magwien.gv.at
обсуждение исходный текст
Ответ на schema or database  (Michael Cheung <vividy@justware.co.jp>)
Ответы Re: schema or database  (Pavel Stehule <pavel.stehule@gmail.com>)
Список pgsql-general
Michael Cheung wrote:
> I have many similar database to store data for every customer.
> Structure of database is almost the same.
> As I use same application to control all these data, so I can only use
> one database user to connect to these database.
> And I have no needs to query table for different customer together.
> 
> I wonder which I should use, different shema or different database to store data?
> 
> I 'd like to know the advantage and disadvantage for using schema or database.

In addition to what others have said:

If you use multiple schemas within one database, the danger is greater that
data are written to or read from the wrong schema if your application has a bug
ans does not make sure to always set search_path or qualify every access with a
schema name.

With multiple databases you are guaranteed not to access data from a different
database.

The main downside that I see to multiple databases is the overhead: each of
the databases will have its own pg_catalog tables.

Yours,
Laurenz Albe

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

Предыдущее
От: "David G. Johnston"
Дата:
Сообщение: Re: Limiting user from changing its own attributes
Следующее
От: Pavel Stehule
Дата:
Сообщение: Re: schema or database