JerryMungo
Honorary Master
- Joined
- Jul 18, 2008
- Messages
- 37,850
- Reaction score
- 6,496
South Africa’s biggest forum. Discuss, discover, and connect with thousands of members.
Not sure how well a "console" app might function,have you looked into function apps?We're doing a lift and shift of a project from an on-premise / VPS environment where the first step of an SSIS ETL runs a console app as a process task in the ETL:
View attachment 886322
What's the best way to execute the .net console app after the lift-and-shift to Azure? We're running a SQL managed instance and data factory for the SSIS execution. Any suggestions very welcome!

Hmm in Azure, it depends on where you host everything. You may well not be able to access the EXE from where SSIS is hosted. But if you have, you use a scripts task in the SSIS control flow. Then in the code you use Process class with full path to the exeDo you mean a process task? What do I pass through to it for the executable? Locally I refer to the .exe using a Windows drive letter assignment or UNC path: c:\myexecutable.exe or \\server\share\myexecutable.exe... How is that done in Azure - I assume I can stick the exe in a blob container, but how do I refer to it from the SSIS package?