我在数据库模型中编码数据仓库。 但实际上我不确定如何处理交易数据。 我有以下属性
Service
Time(based on minutes)
Status
我有一个服务中心表,一个状态的中心表和一个时间表的中心表,但它不是基于分钟。
问题是? 是交易数据链接表吗? 你会如何设计这个? 感谢您的意见
答案 0 :(得分:1)
如果我正确地理解了你的问题,下面是集线器的结构:
HUB Service (Hub_Service_HKEY >PK)
HUB Status(HUB_Status_HKEY ->PK)
HUB Time(HUB_Time_HKEY ->PK) and Satellite (HUB_Time_HKEY(FK),Year,month,day,hour)
然后,事务LINK的结构将TXLNK_SST(TX_LNK_HKEY(PK),HUB_Time_HKEY(FK),HUB_Status_HKEY(FK),Hub_Service_HKEY(FK), Minute_ID, Some_other_fileds_if_any *)
以谷物分钟存储交易。
* -> Since transaction link does not store history so other attributes should be stored in transaction link itself.