-1

我是 SSIS 的新手,我需要你的帮助。我有以下表格:

Fact_Table(date_debut_alarm,date_fin_alarm,,BTS,id_temp_deb,id_temp_fin,numOfweek,T,a,pond,t_pond)

dim_BTS(BTS,BSC,statut,date_BTS,class,Id_Ville)

dim_Calendar_deb(id-temp_deb,date_deb,year,month,trimestre,week)

dim_Calendar_fin(id-temp_fin,date_fin,year,month,trimestre,week)

和一个临时表:

[alarmstg]([Alarm Description] ,date_deb_alarm ,date_fin_alarm,[Server] ,[BSC] ,[BTS_ID] ,[BSC_BTS] ,[BTS] )

我想fact_table使用这些表格来填写。我怎样才能做到这一点?

4

2 回答 2

0

听起来您可以从 SSIS 基础知识的一些培训中受益。

Plurlsight视频非常好。如果您有培训预算,我会寻找 Pragmatic Works 提供的 SSIS 培训。

在不知道更多细节的情况下,我将为Data Flow您需要加载的每个表创建一个单独的表。

祝你好运。

于 2013-07-18T21:09:08.613 回答
0

将 fact_table 合并为目标,使用(从 dbo.dim_date_deb 中选择 idDateStart,weekofEmployees)作为 source.date_debut_alarm=target.date_deb 上的源匹配,然后更新设置 target.idDate_tem_deb=source.id_temp_deb;

于 2013-07-22T23:18:55.647 回答