Hi,
we have a table with about 120 millions of records that grows at 2.5 millions of records per week.
For not letting this table explode we would like to delete old records once a week. Therefore we have an SQL like
Code:
delete from table where creationDate < someDate
As this delete affects about 2.5 million rows it is really slow which seems to be up to the transaction log that gets really big.
Which is the best, so the most performant, way for scuch a mass delete operation?