考试报名
考试报名
考试内容
考试大纲
在线客服
返回顶部

备考刷题,请到

CDA认证小程序

In a multidimensional model with multiple connected tables, snowflake schema is:
A. One dimension table connected to multiple fact tables
B. Multiple dimension tables connected to multiple fact tables
C. One fact table connected to multiple dimension tables
D. One fact table connected to one dimension table, which connects to more dimension tables
上一题
下一题
收藏
点赞
评论
题目解析
题目评论(0)

One fact table connected to one dimension table, which further connects to more dimensions, is a snowflake schema.

正确答案是 D: One fact table connected to one dimension table, which connects to more dimension tables。

专业分析:
雪花模式(Snowflake Schema)是一种数据库模式,它扩展了星型模式(Star Schema)。在星型模式中,事实表直接连接到各个维度表,而在雪花模式中,维度表可以进一步规范化为多个相关的子维度表。

具体来说,在雪花模式中:
- 一个事实表连接到一个或多个维度表。
- 这些维度表可以进一步被分解成更小的子维度表,从而形成一个类似于雪花形状的结构。

这种模式的主要优点是减少数据冗余,因为每个子维度表只存储一次相关信息。然而,这也带来了查询复杂性增加的缺点,因为需要更多的表连接操作。

因此,选项D描述了一个事实表连接到一个维度表,而这个维度表又连接到更多的维度表,这正是雪花模式的特点。