Hi everyone,
In the front end of my application, the user can capture information against a date.
The user can also create new levels of granularity at which to capture this information. Currently, they only use Year and Quarter.
In my operational schema, I have a "Period" table, linked to a Period Type. Each Period entity has a type {currently, Quarter or Year} and a parent {Null for the year values and the year associated to each quarter)
So...
How best should I model this in my data warehouse dimension? The bredth of the table is configurable, so I can't really have the standard year and quarter column easily. And yet the parental relationship is obviously important.
Any help much appreciated.