0

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 foos within ForEach Loop Container?

J.S. Orris
  • 4,653
  • 12
  • 49
  • 89

2 Answers2

0

Set row count to 5000 and delete until done. This is the best that I have noticed. I delete a lot of very old transactions daily before I used this method, I had a lot of issues.

Bill Gauvey
  • 95
  • 1
  • 5
0

here I used conditional split and based on that I removed nulls and passed not null rows to destination

Is this what you have asked....

koushik veldanda
  • 1,079
  • 10
  • 23