I need to execute a one-time task to update all rows in a large database. I want to do this as quickly as possible. Each row needs to be read, have a value in a column modified by an algorithm, and then updated with the transformed value. I have written a single partitioned stored procedure to do this.
I am aware of the examples on this page: https://docs.voltdb.com/UsingVoltDB/sysprocgetpartitionkeys.php
I would rather not have to write a java client to execute this procedure in each partition, and would ideally like to call @GetPartitionKeys, then execute the stored procedure on each value, in sqlcmd.