I am having trouble getting an SSIS package to work in ADF. The package runs from Visual Studio & also from the SSIS Catalog on my on premise server. The package has the following steps:
- Pulls data from an external OData feed (SAP by Design).
- Loads the data into an Azure SQL Server staging database on a DBaaS instance.
- Loads the same data from Staging to a Datawarehouse on the same DBaaS instance.
Steps I have taken:
- Created the SSISDB on my Azure instance.
- Created an Azure Data Factory.
- Created an Azure-SSIS Integration Runtime.
- Created & tested a simple package to copy data from Staging to the Datawarehouse.
- Deployed a working SSIS package to Azure.
- Created an External IR.
The package execution on fails validation with this error: Error: Cannot acquire a managed connection from the run-time connection manager.
Obviously, I am missing some crucial element in my set up but haven't been able to figure it out. I am, of course, very new to Azure. Any help would be greatly appreciated. :)
Marvel