Обсуждение: compliance with 21 cfr part 11

Поиск
Список
Период
Сортировка

compliance with 21 cfr part 11

От
e-letter
Дата:
Readers,

Can postgresql be deployed with audit trail and data validation
capability, to meet compliance with 21 cfr part 11?


Re: compliance with 21 cfr part 11

От
John R Pierce
Дата:
On 12/4/2013 3:34 PM, e-letter wrote:
> Can postgresql be deployed with audit trail and data validation
> capability, to meet compliance with 21 cfr part 11?

IMHO, that sort of audit trail should be higher level in your business
logic, not in the database.   but that's just my opinion, worth exactly
what you paid for it.



--
john r pierce                                      37N 122W
somewhere on the middle of the left coast



Re: compliance with 21 cfr part 11

От
Rob Sargent
Дата:
On 12/04/2013 04:41 PM, John R Pierce wrote:
On 12/4/2013 3:34 PM, e-letter wrote:
Can postgresql be deployed with audit trail and data validation
capability, to meet compliance with 21 cfr part 11?

IMHO, that sort of audit trail should be higher level in your business logic, not in the database.   but that's just my opinion, worth exactly what you paid for it.



I've been through 21 cfr part 11 (successfully) and it has nothing to do with the database vendor and everything to do with how you track changes to the data.

Re: compliance with 21 cfr part 11

От
Robin
Дата:
I have built big nationwide health databases, and other secure systems requiring traceback and auditability.

The more you are able to make the required processes transparent to the end user, the happier they are and the fewer problems you have from a user acceptance perspective.

Audit does belong in the database, go and look at where the likes of Sybase ASE and DB2 do it. If you do it up front, you are continually maintaining it.

Few systems control appropriate access to data; that is a harder and proprietary trick.

Robin St.Clair

On 05/12/2013 00:07, Rob Sargent wrote:
On 12/04/2013 04:41 PM, John R Pierce wrote:
On 12/4/2013 3:34 PM, e-letter wrote:
Can postgresql be deployed with audit trail and data validation
capability, to meet compliance with 21 cfr part 11?

IMHO, that sort of audit trail should be higher level in your business logic, not in the database.   but that's just my opinion, worth exactly what you paid for it.



I've been through 21 cfr part 11 (successfully) and it has nothing to do with the database vendor and everything to do with how you track changes to the data.

Re: compliance with 21 cfr part 11

От
Scott Marlowe
Дата:
On Wed, Dec 4, 2013 at 9:15 PM, Robin <robinstc@live.co.uk> wrote:
> I have built big nationwide health databases, and other secure systems
> requiring traceback and auditability.
>
> The more you are able to make the required processes transparent to the end
> user, the happier they are and the fewer problems you have from a user
> acceptance perspective.

Well one of the example triggers in the plpgsql documentation is an
audit trigger. So you can do it, but you kinda have to build parts of
it yourself.