I have a MySQL database table of 2.4 million records. I have created 5 calculations, and have tried issuing the following to force the calculations to be stored:
This works fine up until around the 98,000th record, and then it just stops. I have tried sorting the file into descending sequence, but get the same results.
How can I force Servoy to store the calculations in al the records?
Not sure why you are bombing out after 98,000+ records - possibly the result of memory leak or a cache issue ?
The loop is the accepted way to go but maybe with this volume of records you would be better served and certainly quicker running an ‘UPDATE’ statement direct to the MySQL database !?