Generating an SSIS package containing a Data Flow Task
Here, we are finally getting to a more complicated SSIS package that will contain a Data Flow Task, and in a previous recipe, Generating a mass change to stored procedures, we already made some preparation changes to stored procedures in the sample WideWorldImporters
database to overcome the limitations of the Biml related to the use of temporary tables. Now we can concentrate on the Data Flow Task itself.
Getting ready
This is our last recipe for SSIS packages, and it is the most complex one, so let's buckle up and get ready for a bumpy ride! Open Visual Studio 2019, and then open the ETLInAzure SSIS project.
How to do it…
Let's add a new Biml file to start our recipe:
- Add a new Biml file to your solution. Rename it to
Recipe7.biml
. Copy all the code fromRecipe5.biml
intoRecipe7.biml
, because in this recipe we are going to continue to build upon what was done in the Generating an SSIS package...