Currently I am connecting to Azure SQL DB in my Logic Application and using GetRows Task/Action to retrieve rows from the table. What I have noticed that GetRows task processes only 512 records at a time.
I have to process all the records(records greater than 512) coming from table.Is there a limitation in Logic App for GetRows task?
If anyone can provide me the details that will be really helpful
Looking forward for all your inputs
Thanks Harsh
Correct, the Get Rows action would only return up to 512 records. However, note that the response is paged, so if more entries are requested (and available) then the response also includes an @oData.nextLink value.
There is no simple way to follow the next link within logic apps today, so you would need to be a little creative (e.g. use a nested logic app to process all of the items as long as more pages are available)