I am part of a team building a new Content Management System for our public site. I'm trying to find the easiest and best way to build-in a Revision Control mechanism. The object model is pretty basic. We have an abstract BaseArticle
class that includes properties for version independent/meta data such as Heading
& CreatedBy
. A number of classes inherit from this such as DocumentArticle
which has the property URL
that will be a path to a file. WebArticle
also inherits from BaseArticle
and includes the FurtherInfo
property and a collection of Tabs
objects, which include Body
that will hold the HTML to be displayed (Tab objects do not derive from anything). NewsArticle
and JobArticle
inherit from WebArticle
. We have other derived classes, but these provide enough of an example.
We come up with two approaches to persistence for Revision Control. I call these Approach1 and Approach2. I've used SQL Server to do a basic diagram of each:
Articles
to be persisted via a database Update. A trigger would be set for updates and would insert the old data in to the xxx_Versions
table. I think a trigger would need to be configured on every table. This approach does have the advantage that the only the head
version of each article is held in the main tables, with old versions being hived off. This makes it easy to copy the head versions of articles from the development/staging database to the Live one.Articles
to be inserted into the database. The head version of articles would be identified through views. This seems to have the advantage of fewer tables and less code (e.g. not triggers).Note that with both approaches, the plan would be to call an Upsert stored procedure for the table mapped to the relevant object (we must remember to handle the case of a new Article being added). This upsert stored procedure would call that for the class from which it derives e.g. upsert_NewsArticle
would call upsert_WebArticle
etc.
We are using SQL Server 2005, although I think this question is independent of database flavor. I've done some extensive trawling of the internet and have found references to both approaches. But I have not found anything which compares the two and shows one or the other to be better. I think with all the database books in the world, this choice of approaches must have arisen before.
My question is: which of these Approaches is best and why?
One simple way to keep version history is to create basically an identical table (eg. with _version suffix). Both of the tables would have a version field, which for the main table you increment for every update you do. The version table would have a composite primary key on (id, version).
In general, the biggest advantage to history/audit side tables is performance:
any live/active data queried can be queried from much smaller main table
Any "live only" queries do not need to contain active/latest flag (or god forbid do a correllated subquery on timestamp to find out latest row), simplifying the code both for developers AND DB engine optimizer.
However, for small CMS with 100s or 1000s of rows (and not millions of rows), performance gains would be pretty small.
As such, for small CMS, Approach 3 would be better, as far as simpler design/less code/less moving pieces.
Approach 3 is ALMOST like Approach 2, except every table that needs a history/versioning has an explicit column containing a true/false "active" (a.k.a. live - a.k.a. latest) - flag column.
Your upserts are responsible for correctly managing that column when inserting new live version (or deleting current live version) of a row.
All of your "live" select queries outside UPSERT would then be trivial to amend, by adding "AND mytable.live = 1
" to any query.
Also, hopefully obvious, but ANY index on any table should start with "active" column unless warranted otherwise.
This approach combines the simplicity of Approach 2 (no extra tables/triggers), with performance of approach 1 (no need to do correllated subquery on any table to find latest/current row - your upserts manage that via active flag)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With