There comes a time when you’ll be asked to remove a large amount of data from one of your SQL Server databases. Perhaps an archive of order information is needs pruning, or removing those session records that aren’t needed anymore.
Yu’ve been off to have a look at, and it all looks simple enough. Looks like there’s a couple of million rows to delete, but you can identify them all easily. How easy is this going to be you think:
DELETE * FROM Table1 where DateAdded<getdate()-90;
And then it just sits there, and sits there, and sits there. Or you get a nice error message about breaking a key constraint. What to do about it?