Paul
Paul

Reputation: 3142

Azure and SSIS Packages

I have been scratching my head over how I will deploy a data warehouse ecosystem on Microsoft Azure. From my understanding, none of the current SQL offerings allow you to run SSIS packages (SQL Azure, SQL Data Warehouse).

It looks like I'd need to spin up a VM to be able to execute SSIS packages using the Integration Service that comes with the SQL installation media.

But this is where it gets expensive and cumbersome. From what I see, my ecosystem would need to be:

1) A SQL Azure Data Warehouse to store my facts and dimensions

2) A SQL Azure standard SQL Database to store my staging area

3) A VM with Integration Services installed to execute my SSIS packages

With this, I'm paying for a Azure Data Warehouse, a SQL Azure database, a VM AND I'm also having to purchase an on-prem edition of SQL Server in order to license the SSIS exec.

Is there an easier, more cost effective way? I can't see much of an advantage here, I suppose I could install SQL Server on the VM and use that instead of SQL Azure for staging, but then I might as well just not bother with Azure.

Upvotes: 1

Views: 731

Answers (1)

Daryl Wenman-Bateson
Daryl Wenman-Bateson

Reputation: 3939

You can provision an Integration Runtime within Azure Data Factory to hold your Azure based SSIS package

Deploy SSIS to Azure

Lift and Shift SSIS to Azure

Upvotes: 1

Related Questions