If I have 1000 records that I want to add to the database in smaller chunks, how should I design a process to accomplish this?
I have a few potential solutions, but I'm unsure about their performance implications:
However, I need clarification on the most suitable approach in terms of performance before implementing this functionality.
Discussion posts and replies are publicly visible
Is that a one-time job? If not, how often is that import triggered? Only once at a time, or can there be multiple at the same time?
In general, my best experience is: XLS->Temp DB table->Stored Procedure->Final table.
Try to avoid any looping inside Appian using expressions or processes.
Hi ,Thanks for replying, yes i have bulk of data i don't want to send at one time i want to send data in smaller batch size. I was thinking previosly that it can be handled by looping but looping will impact the performace and i think we avoid using looping over the process