Stored procedure in on-premises SQL Server is used to call another app through 'xp_cmdshell'. Now I am trying to do the same on Azure SQL Database. Of course 'xp_cmdshell' is not supported there, so I need workaround.
I was thinking of using Azure Functions as a bridge between Azure SQL Database and app on VM.
- Is it possible to call Azure Function from Azure SQL Database using stored procedure?
- Is it possible to call app on Azure VM from Azure Function?