vote up 14 vote down star
3

(Not related to versioning the database schema)

Applications that interfaces with databases often have domain objects that are composed with data from many tables. Suppose the application were to support versioning, in the sense of CVS, for these domain objects.

For some arbitry domain object, how would you design a database schema to handle this requirement? Any experience to share?

flag

This is actually quite a good question and I'm guessing that since you've accepted my answer a penny must have dropped. IMO this ad-hoc history tracking is one of the cardinal architectural sins of Insurance systems (an area that I work in). +1 – ConcernedOfTunbridgeWells Sep 24 '08 at 9:31
I accepted your answer because the links you provided gave me the knowledge I needed to make an informed decision. Being given enough knowledge to answer the question yourself is a superior way of learning, than just being spoon-fed generic answers. – Christian Vest Hansen Sep 25 '08 at 16:25
Glad to be of help - I've found that doing a bit of web research and including the fan-out is a good sweet spot for stackoverflow answers. Many of my better (and more popular) answers have been done in this format, and it seems to be appreciated. – ConcernedOfTunbridgeWells Oct 8 '08 at 10:22

7 Answers

vote up 5 vote down check

Think carefully about the requirements for revisions. Once your code-base has pervasive history tracking built into the operational system it will get very complex. Insurance underwriting systems are particularly bad for this, with schemas often running in excess of 1000 tables. Queries also tend to be quite complex and this can lead to performance issues.

If the historical state is really only required for reporting, consider implementing a 'current state' transactional system with a data warehouse structure hanging off the back for tracking history. Slowly Changing Dimensions are a much simpler structure for tracking historical state than trying to embed an ad-hoc history tracking mechanism directly into your operational system.

Also, Changed Data Capture is simpler for a 'current state' system with changes being done to the records in place - the primary keys of the records don't change so you don't have to match records holding different versions of the same entity together. An effective CDC mechanism will make an incremental warehouse load process fairly lightweight and possible to run quite frequently. If you don't need up-to-the minute tracking of historical state (almost, but not quite, and oxymoron) this can be an effective solution with a much simpler code base than a full histoy tracking mechanism built directly into the application.

link|flag
Just read the SCD page. Lots of food for thought. The alternative Type 6 looks like it is hitting close to home for me. – Christian Vest Hansen Sep 24 '08 at 8:58
Type 2/6 (a type 6 is just a type 2 with a self join to the most recent version) dimensions are probably what you want here. Look into using changed data capture if you want to update the warehouse frequently. – ConcernedOfTunbridgeWells Sep 24 '08 at 9:00
vote up 4 vote down

A technique I've used for this in that past has been to have a concept of "generations" in the database, each change increments the current generation number for the database - if you use subversion, think revisions. Each record has 2 generation numbers associated with it (2 extra columns on the tables) - the generation that the record starts being valid for, and the generation the it stops being valid for. If the data is currently valid, the second number would be NULL or some other generic marker.

So to insert into the database:

  1. increment the generation number
  2. insert the data
  3. tag the lifetime of that data with valid from, and a valid to of NULL

If you're updating some data:

  1. mark all data that's about to be modified as valid to the current generation number
  2. increment the generation number
  3. insert the new data with the current generation number

deleting is just a matter of marking the data as terminating at the current generation.

To get a particular version of the data, find what generation you're after and look for data valid between those generation versions.

Example:

Create a person.

|Name|D.O.B  |Telephone|From|To  |
|Fred|1 april|555-29384|1   |NULL|

Update tel no.

|Name|D.O.B  |Telephone|From|To  |
|Fred|1 april|555-29384|1   |1   |
|Fred|1 april|555-43534|2   |NULL|

Delete fred:

|Name|D.O.B  |Telephone|From|To  |
|Fred|1 april|555-29384|1   |1   |
|Fred|1 april|555-43534|2   |2   |
link|flag
+1. I was thinking along these lines but was unsure; it's very reassuring to see that someone has used this technique successfully. – Jason S May 6 at 13:51
vote up 1 vote down

You'll need a master record in a master table that contains the information common among all versions.

Then each child table uses master record id + version no as part of the primary key.

It can be done without the master table, but in my experience it will tend to make the SQL statements a lot messier.

link|flag
vote up 2 vote down

An alternative to strict versioning is to split the data into 2 tables: current and history.

The current table has all the live data and has the benefits of all the performance that you build in. Any changes first write the current data into the associated "history" table along with a date marker which says when it changed.

link|flag
vote up 1 vote down

See this existing question

link|flag
vote up 0 vote down

A simple fool-proof way, is to add a version column to your tables and store the Object's version and choose the appropriate application logic based on that version number. This way you also get backwards compatibility for little cost. Which is always good

link|flag
vote up 0 vote down

ZoDB + ZEO implements a revision based database with complete rollback to any point in time support. Go check it.

Bad Part: It's Zope tied.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.