本文介绍了增量负荷的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
加载事实的我的临时表将每天使用以下查询加载:
My staging table that loads the fact is going to be loaded everyday using following query:
select * into表格中的舞台a.site = b.site上的完整外部联接表B和a.busline = b.busline
select * into Stage from table A full outer join table B on a.site=b.site and a.busline=b.busline
表A或B中没有日期列
我想将Stage表中数据的增量加载到cube中的事实表中。如何完成?
推荐答案
您可以使用
T-SQL Merge 声明跳过已加载/陈旧的数据。
You can use the T-SQL Merge statement as you need to skip already loaded/stale data.
这篇关于增量负荷的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!