Re: FOREIGN KEYS vs PERFORMANCE

Поиск
Список
Период
Сортировка
От Markus Schaber
Тема Re: FOREIGN KEYS vs PERFORMANCE
Дата
Msg-id 443CFE3F.5090304@logix-tt.com
обсуждение исходный текст
Ответ на Re: FOREIGN KEYS vs PERFORMANCE  (Michael Glaesemann <grzm@myrealbox.com>)
Список pgsql-performance
Hi, Michael,
Hi, Rodrigo,

Michael Glaesemann wrote:

> If I had to choose between one or the other, I'd leave all  referential
> integrity in the database and deal with the errors thrown  when
> referential integrity is violated in the application. PostgreSQL  is
> designed to handle these kinds of issues. Anything you code in  your
> application is more likely to contain bugs or miss corner cases  that
> would allow referential integrity to be violated. PostgreSQL has  been
> pounded on for years by a great many users and developers,  making the
> likelihood of bugs still remaining much smaller.

I strictly agree with Michael here.

> Of course, you can add some referential integrity checks in your
> application code, but those should be in addition to your database-
> level checks.

Agree. It does make sense to have reference checks in the UI or
application level for the sake of better error handling, but the
database should be the mandatory judge.

There's another advantage of database based checking: Should there ever
be the need of a different application working on the same database (e.
G. an "expert level UI", or some connector that connects / synchronizes
to another software, or a data import tool), database based constraints
cannot be broken opposed to application based ones.

HTH,
Markus
--
Markus Schaber | Logical Tracking&Tracing International AG
Dipl. Inf.     | Software Development GIS

Fight against software patents in EU! www.ffii.org www.nosoftwarepatents.org

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

Предыдущее
От: "Harry Hehl"
Дата:
Сообщение: Re: Sequencial scan instead of using index
Следующее
От: "Craig A. James"
Дата:
Сообщение: Re: FOREIGN KEYS vs PERFORMANCE