DataDeploy DAS design problem
Hi,
A project requirement has come about, and I'm not sure how to go about fulfilling it.
Assume a DCR has the fields: id, type, forename, surname, hobby.
with the example data: "123", "Cartoon Character", "Homer", "Simpson", "Drinking Duff"
From this, we'd like to create two tables:
ROOT TABLE -> id, type (e.g. "123", "Cartoon Character")
DATA TABLE -> id, name, value
The data table would have one row for each of the data items in the DCR, so for the above example we might have three rows:
"123", "forename", "Homer"
"123", "surname", "Simpson"
"123", "hobby", "Drinking Duff"
I've thought of a way of doing this with TeamSite 6.5, using FormAPI to build up a hidden replicant of name/value pairs when the form is saved, and then mapping this to the data table. However we have TeamSite 6.1 - typical eh?
Can anyone think of an alternative way of achieving this?