3
votes
5answers
724 views
How to delete all but the latest 20,000 records in MS SQL 2005?
Every night I need to trim back a table to only contain the latest 20,000 records. I could use a subquery:
delete from table WHERE id NOT IN (select TOP 20000 ID from table ORDER B …
