Getting Error While Formatting the string Variable with Huge data

Hi

In your case, the most likely cause of the error is that you are trying to process too much data in memory. The UiPath platform has a limit on the amount of data that can be processed in memory at one time. If you try to process more data than the limit, the platform will throw an error.

To resolve this issue, you can try the following:

  1. Split the data into smaller chunks. Where You can use the ReadTextFile activity to read the data in chunks. For example, you could read the first 1000 rows of data, process it, and then read the next 1000 rows of data.

  2. Use a database to store the data

  3. Try to use KILL PROCESS activity where pass your application executable Filename as ProcessName property

Refer these threads for similar issue and resolution

Hope this helps

Cheers @Dinesh_dine