Can someone please recommend the best way of doing this using Azure Logic App:
The scenario that i have is to:
i) Connect to SFTP Server
ii) Get csv file from the SFTP Server
iii) Parse the csv file and move the load to an Azure SQL Database Table
After getting the csv file from the SFTP server using the SFTP Connector, should i pass the content of the file to an Azure Function?
Then in the Azure Function, parse the file content and then use a stored procedure within the Function?
Or pass the transformed file content back to the logic app to execute the stored procedure to insert the records into Azure SQL?
Or any other recommendations