Hi Lars and fellow anchor-modellers,
thanks to you and the rest of the team behind anchor modelling, it's very interesting work.
I'm writing a thesis in data warehouseing and am currently trying to compare anchor modelling to the data vault. Because of this I would like to make the anchor model source driven and not do any cleansing. That should come in a layer down the road.
While modeling the anchor I'm trying to model name-value pairs which I will be receiving from a source system. In the vault this is one table containing a name and a value column. In anchor modelling I can't quite work out how to receive multiple pairs and still keep their pairing.
The input of one loading cycle and one entity looks like this:
FK_ENTITY NAME VALUE
---------- ---------------- ------------------------------
1 category 1 This is interseting text
1 category 2 Some Text
1 category 3 even more text
1 foo bar
Pivoting into
FK_ENTITY Category 1 Category 2 Category 3
---------------- ------------------------ ------------ ------------------------------
1 This is interseting text Some Text even more text
wouldn't be that nice, since i couldn't save all the wrong or unforseen data.
Any ideas?