使用ssis包进行数据仓储和加载数据

发布于 2024-11-18 10:05:54 字数 256 浏览 2 评论 0原文

我是数据仓库设计的新手,据我所知,我创建了一个数据仓库设计。

对于这个数据库,我创建了 4 个维度和 1 个事实表。

  1. 对于所有维度,我没有保留主键约束。
  2. 对于每个维度都有一个唯一的列。
  3. 有了这个独特的列,SSIS 包中才实现了 SCD。
  4. 对于事实表,通过使用查询直接从源数据库移植数据。

任何人都可以就上述几点提出建议吗?
是否需要进行任何修改或者这是正确的吗?

I am new to Data warehousing design, I have created a data warehouse design as of my knowledge.

For this database I have created 4 dimensions and 1 fact table.

  1. For all dimensions i didn't kept primary key constraints.
  2. For each dimension having one unique column.
  3. with that unique column only SCD is implemented in SSIS package.
  4. For fact table directly data porting from source database by using query.

Can any one suggest on above mentioned points.
Any modifications have to do or is this correct?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

随心而道 2024-11-25 10:05:54
  1. 维度有自己的自动递增键,所以如果您的意思是您没有从源系统复制该键,那是可以的。

  2. 不知道这意味着什么。维度确实具有唯一标识“维度对象”(客户、商店、产品)的业务键,但列没有具有唯一约束。对于 SCD 类型 1,它恰好是唯一的,但这是一种特殊情况。

  3. 所以,您正在 SSIS 中使用 SCD — 很好。

  4. 错误——至少我是这么理解的。加载事实表时,您必须根据业务键从每个维度查找主键。

看一下此示例

  1. Dimensions have their own auto-incrementing key, so if you mean that you did not copy the key from the source system that is OK.

  2. Not sure what this means. Dimensions do have the business key which uniquely identifies a "dimension object" (customer, store, product), but the column does not have an unique constraint. For SCD type 1 it happens to be unique, but that is a special case.

  3. So, you are using the SCD in SSIS -- fine.

  4. Wrong -- at least the way I understand this. When loading fact tables, you have to look-up primary keys from each dimension based on the business key.

Take a look at this example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文