• If you want to update 10,000 rows at a time, you can use an UPDATE TOP (10000) ... ORDER BY ID statement in your loop.  You'll probably need an OUTPUT clause so that you know when to stop!

    John