微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ETL -- SDE AND SIL

SDE: Source Dependent Extract

SDE mappings -- extracts the data from the transactional Source System and loads into the data warehouse staging tables.

SDE mappings are designed with respect to the source's  unique data model.

SDE_* workflows have only the staging table,the workflow will load the data into the staging area tables.

In the staging the tables will not have index.

It always truncates the data and loads the data into staging table.

So the load type will be BULK mode because the stagings have no indexes defined.

SIL: Source Independent Load

SIL mapping typically select from the staging tables and load the target warehouse tables.

SIL_*  --  You can find two SIL_* workflows in the Workflow Manager.

During a full load the workflow (SIL_*_Full) will be invoked from DAC and the target table is truncate,indexes are dropped,data is loaded in 'Bulk' mode and then the indexes are rebuild.

Durring incremental load,the workflow (SIL_*) will be invoked which would just insert/update the incremental data. Since the amount of data during incremental load is minimal compared to full load this would run in 'normal' mode.If indexes are present on a table "BULK" mode does not work.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐