I have an issue with a DatabaseUpdater command.
It seems to initiate a SELECT * FROM MyTable before it does the
update SQL command which is fine for one of my tables as I don't have
masses of data so it completes quickly then carries on and does the
updates. One of my tables however has millions of rows so doing a SELECT
* on this is clearly never going to work and basically locks the table
out and becomes unusable.
Here is my flow so a csv input passes through a tester then calls to the DatabaseUpdater
SQL Trace:
Does anyone know why it needs to do the SELECT * and how I stop it from doing it so my updates run?