Best implementation for fully auditable data model?

前端 未结 6 2063
情深已故
情深已故 2021-02-06 14:36

My requirement is for a data model where a full audit trail is retained for changes to every attribute of every object. Object definitions are also fluid: new attributes can ap

6条回答
  •  忘掉有多难
    2021-02-06 15:20

    You can also create a logging system in application code. Log calls to every function that modifies the database and results in a successful COMMIT.

    Answer to your question: no, just use a RDBMS. It'll be easier to run queries on the log.

提交回复
热议问题