I have a ForEach Loop Container
that enumerates a massive amount of Excel Files
. All files have NULL
rows mixed in with the populated Rows. These need deleted upon migration into database.
What performs better: one massive DELETE FROM foo
or multiple small DELETE FROM foo
s within ForEach Loop Container
?