I've been trying to develop an Azure Logic App that imports files from an FTP server and with a stored procedure in an Azure SQL service parse the contents.
Currently I've been struggling with executing this stored procedure from the logic app; the stored procedure can take up to 10 minutes to execute.
I've been trying a few solution setting up the Execute Stored Procedure
Action in the Azure Logic App:
- Add execute stored procedure as an action with an asynchronous timeout of (PT1H)
- Surround it with a do-until loop that checks the return code.
None of these solutions seem to be resolving the issue. Does anyone have anything else I can try when developing this Azure Logic App?