This section will now focus on the SSIS projects that move the data from various locations. There are several SSIS projects in the solution:
- ETL.Staging: This contains SSIS packages that transfer data from AdventreWorksLT to the Staging schema in AdventureWorksLTDW2016
- ETL.DW: This contains packages that transfer and transform data from the Staging schema to the DW schema in AdventureWorksLTDW2016
We'll have recipes in this section that will explain how the packages are structured and how we'll deploy and run them to load data from the source database to the data warehouse.
There are two types of SSIS packages in the projects:
- Entry-point packages: These packages orchestrate the Extract, Transform, and Load (ETL) flow of the solution. It's in these packages that other packages call and in what order they are called. In the solution, there's...