Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 827 Bytes

audit-logging.md

File metadata and controls

24 lines (15 loc) · 827 Bytes

Audit-Logging

https://www.codeproject.com/Articles/105768/Audit-Trail-Tracing-Data-Changes-in-Database

CQRS/Event Sourcing vs Audit Logging vs Temporal Database

Audit postgres options

https://severalnines.com/database-blog/postgresql-audit-logging-best-practices https://www.cybertec-postgresql.com/en/row-change-auditing-options-for-postgresql/ https://github.com/pgMemento/pgMemento

PGMemento

-- Running this twice will produce the message 'pgMemento is already intialized for public schema.'; SELECT pgmemento.init('public');

-- Add individual tables. SELECT pgmemento.create_table_audit('table-name');