Maximum number of executable statements

Maximum number of executable statements

This is a general comment / question.
I think Zoho creator is an absolute great platform and has also improved a lot over the years.
One thing however has proven to be very annoying and that is the Maximum number of 5000 executable statements per deluge action. I work on a db with around about 6000 records. It happens way too often that I have to run a function for pretty much all records where i'll get the limit error. Then have to break it up in lots of small portions. For example if i want to run something like this:
  1. for each  rec in Register[Address != ""]
  2. {
  3. rec.Address1.address_line_1=rec.Address;
  4. rec.Address1.address_line_2=rec.Suburb;
  5. rec.Address1.district_city=rec.City;
  6. rec.Address1.postal_Code=rec.Postal_Code;
  7. rec.Address1.country=rec.Country;
  8. }
I believe this counts a 5 or 6 actions, so can only apply it to maybe about 800 records and have to repeat that 7 times. Very time consuming.
I do get that there are limits to avoid infinitive loops etc, but I don't get why this couldn't be more flexible, maybe growing with the size of the database? Is it too resource intensive? Isn't it the same intensiveness if I run 7 times 5000 actions or 1 time 35000 actions?

Anyway, happy to hear feedback