What is the maximum limit of records to be updated in oracle database using Azure function?

73 views Asked by At

There is a requirement for the initial load of almost 500k customers into the oracle database. We are planning to achieve this using Azure function.

Is that possible? if not, can you suggest any alternative approaches.

Please note that connecting to client's database can only be possible using VNET as it is hosted in a private network.

1

There are 1 answers

0
Joey Cai On

There is no related limit with records to be updated in database.

Remember not to use httptrigger which has 230s response limit.

For more details about azure function limit you could refer to this article.