Hi,
I have a query on SSIS, I have a SQL table (Productmaster) as below
OriginalProductIdProductName, Store1Code, Store2Code, Store3Code
001 Apple 101 201 301
002 Banana 102 202 302
003 Orange 103 203 303
StoreMaster
StoreId StoreName
1 S1
2 S2
3 S3
My Sales table
Store ProductId Qty Amt
S1 101 10 1000
S1 102 10 1000
S1 103 5 500
S2 201 3 300
S2 202 5 500
S2 203 6 600
S3 301 2 200
S3 302 6 600
S3 303 8 800
The output is combination of all the 3 tables
Storename OriginalProductId Qty Amount
S1 001 10 1000
S1 002 10 1000
S1 003 5 500
S2 001 3 300
S2 002 5 500
S2 003 6 600
S3 001 2 200
S3 002 6 600
S3 003 8 800
How can i do this with SSIS package, please its very urgent