Inserting Multiple Records In On Prem SQL Using Logic App
In last post we saw how to Insert a single Record in SQL Table which is on Prem using Logic App - Inserting data in On Premises SQL Database using Logic Apps Here I intend to walk through the process of inserting multiple records using single Logic App, to do this we have two options we can choose from 1. Split On 2. For Each So either we debatch/split the Request message and insert in table or loop through the array of records and insert in table, here I am using the later method. Input In earlier post we had single record thus input was - { "Description": "Edifice", "ID": "123", "Price": "3424" } Here we want multiple records thus we need to create an array of records as following- { "Products":[ { "Description": "Edifice", "ID": "123", ...