I'm a newbie in datawarehousing, but I am in charge of this task. I need to create a schema (star) to store "Alarms"; so alarms comes from MySQL OLTP database and are a sort of log of access control system. Alarms have to be recorder because it needs to analyze the history of alarms happened in the past (for maintenace purpose).
My idea is
DimDate
- fullDate
- dayOfMonth
- dayOfYear
- dayOfWeek ...
DimTime
- fulltime
- hour
- minute
- second
- ampm
DimAlarm
- AlarmSourceID
- AlarmDescriptionENG
- AlarmDescriptionITA
- AlarmDescriptionDEU
- AlarmDescriptionFRA
FactAlarm
- Foreign keys and nothing more?
But, now, I don't know what should be the measures on Fact table. Because an alarm on the source DB is just an ID, a description and a timestamp, but the alarms have to be queryed for all of those farameters.
How is this schema??
Thank you