Generic version control strategy for select table data within a heavily normalized database

Posted by leppie on Stack Overflow See other posts from Stack Overflow or by leppie
Published on 2009-03-03T11:32:20Z Indexed on 2010/05/21 4:20 UTC
Read the original article Hit count: 225

Hi

Sorry for the long winded title, but the requirement/problem is rather specific.

With reference to the following sample (but very simplified) structure (in psuedo SQL), I hope to explain it a bit better.

TABLE StructureName {
  Id GUID PK,
  Name varchar(50) NOT NULL
}

TABLE Structure {
  Id GUID PK,
  ParentId GUID (FK to Structure),
  NameId GUID (FK to StructureName) NOT NULL
}

TABLE Something {
  Id GUID PK,
  RootStructureId GUID (FK to Structure) NOT NULL
}

As one can see, Structure is a simple tree structure (not worried about ordering of children for the problem). StructureName is a simplification of a translation system. Finally 'Something' is simply something referencing the tree's root structure.

This is just one of many tables that need to be versioned, but this one serves as a good example for most cases.

There is a requirement to version to any changes to the name and/or the tree 'layout' of the Structure table. Previous versions should always be available.

There seems to be a few possibilities to tackle this issue, like copying the entire structure, but most approaches causes one to 'loose' referential integrity. Example if one followed this approach, one would have to make a duplicate of the 'Something' record, given that the root structure will be a new record, and have a new ID.

Other avenues of possible solutions are looking into how Wiki's handle this or go a lot further and look how proper version control systems work.

Currently, I feel a bit clueless how to proceed on this in a generic way.

Any ideas will be greatly appreciated.

Thanks

leppie

© Stack Overflow or respective owner

Related posts about version-control

Related posts about database