Where are all the native revisioned databases?

后端 未结 4 1576
自闭症患者
自闭症患者 2021-02-13 23:02

I\'ve read all the SO questions, the Coding Horror articles, and Googled my brains off searching for the best ways to revision control data. They all work and they all have thei

4条回答
  •  自闭症患者
    2021-02-14 00:08

    You forgot I want performance. A DBMS is a pretty low level data storage mechanism, and in systems with billions of rows, performance can be important. Therefore, if you want this sort of auditing system, you can build it yourself using the tools available to you (eg. triggers).

    Just as in a filesystem, not all files are appropriate for version control, in a database not all rows would be appropriate for version control either.

提交回复
热议问题