I need help in designing SSIS packages for our DWH load.
I have two star-schema model with following details
1st Model --> 5 dimension and 5 fact tables respectively
2nd Model --> 5 dimension and 1 fact tables respectively
I have five different source system from where I need to populate data into these tables.
Based on the above requirements I have thought of designing the package like this:
there will three packages and which will do the following:
- First package will extract the data from source systems to staging table (SQL Server tables) with all the necessary transformation.
- Second package will load the data to all the dimension tables.
- Third package will load the data to all the fact tables.
Please let me know if the above design/architecture will work for this DWH load or do I need to do some modification.