How to delete large data of table in SQL without running out of log space
Change your database’s Recovery Mode to SIMPLEĀ and then delete rows in smaller batches using a while loop something like this: Keep in mind that logs could grow a lot if you don’t commit the transaction after each chunk and perform a checkpoint. This is how I would do it and take this article http://sqlperformance.com/2013/03/io-subsystem/chunk-deletesĀ as reference,... » read more