Want to add to the database in smaller chunks, Need to design process

Certified Senior Developer

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:

  1. Implementing a loop: In each iteration, I would send data in manageable chunks.
  2. Utilizing an XLSX file: I could create an XLSX file and then use the Excel to Database smart service to transfer the data.
  3. Using a stored procedure.

However, I need clarification on the most suitable approach in terms of performance before implementing this functionality.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to Ankush Sharma

    Create a custom paging as below

    if(
      ri!index = 1,
      a!pagingInfo(
        startIndex: 0,
        batchSize: 100
      ),
      a!forEach(
        items: enumerate(ri!index) + 1,
        expression: if(
          fv!index = 1,
          a!pagingInfo(
            startIndex: 0,
            batchSize: 100
          ),
          a!pagingInfo(
            startIndex: 100 * (fv!item - 1),
            batchSize: 100
          )
        )
      )
    )

    Next create a stored Procedure using LIMIT, Pass the above batch size to this procedure  , so this procedure would bring only certain number of rows from the staging table using the batch size, then run the actual stored procedure to push data from staging table to main transaction table.

Children