Does anyone know of any SQL code that will tell MS-SQL to not to log to the transaction log?
I'm trying to delete a large number of records from a table but to do it all at once causes the transaction log to fill up. So, I'm thinking that if it was possible to tell SQL not to log the when I'm deleting those records, and then to turn logging back on when all those gone would prevent my transaction log from filling.
I'm trying to delete a large number of records from a table but to do it all at once causes the transaction log to fill up. So, I'm thinking that if it was possible to tell SQL not to log the when I'm deleting those records, and then to turn logging back on when all those gone would prevent my transaction log from filling.