According to Kimball, Factless fact table are“fact tables that have no facts but captures the many-to-many relationship between dimension keys.” A factless fact table is a fact table that does not have any measures. It is essentially an intersection of dimensions (it contains nothing but dimensional keys). In my case, I am creating a fact table which captures for each employee :
- their function
- their role
- their main manager
- their department
- their status
- EntryDate
- ExitDate
The event related to my fact table are : - when any change is applied to the function, role main manager.. of an already existing employee - or a new employee has arrived
I am adding for historical need in my fact :
- BI_StartDate
- BI_EndDate
Is my fact table a Factless fact ?
The fact is containing the history : How can I track the date of updates if I am having an update of function and type of an employee of the same period ?