walidwalid
Programmer
I have dimension called Dim_Customer:
CustomerUID CustomerID CustomerName
1 1 Joe
2 2 James
3 3 Micheal
and i have Fact called SalesFact:
CustomerUID CustomerID Sales
Null 1 12
Null 2 13
Null 3 23
i used lookup task to get the CustomerUID from Customers dimension and put it into the CustomerUID in the Fact table. Then i used destination to load the data again into the Fact table i found:
CustomerUID CustomerID Sales
Null 1 12
Null 2 13
Null 3 23
1 1 12
2 2 13
3 3 23
I found that the data has been duplicated.
I don not want that i want to insert the updated data only
The same i found in the Derived column task.
how can i solve that problem ?
Thanks
regards
CustomerUID CustomerID CustomerName
1 1 Joe
2 2 James
3 3 Micheal
and i have Fact called SalesFact:
CustomerUID CustomerID Sales
Null 1 12
Null 2 13
Null 3 23
i used lookup task to get the CustomerUID from Customers dimension and put it into the CustomerUID in the Fact table. Then i used destination to load the data again into the Fact table i found:
CustomerUID CustomerID Sales
Null 1 12
Null 2 13
Null 3 23
1 1 12
2 2 13
3 3 23
I found that the data has been duplicated.
I don not want that i want to insert the updated data only
The same i found in the Derived column task.
how can i solve that problem ?
Thanks
regards