SQL Duplicate Delete Query over Millions of Rows for Performance
问题 This has been an adventure. I started with the looping duplicate query located in my previous question, but each loop would go over all 17 million records , meaning it would take weeks (just running *select count * from MyTable* takes my server 4:30 minutes using MSSQL 2005). I gleamed information from this site and at this post. And have arrived at the query below. The question is, is this the correct type of query to run on 17 million records for any type of performance? If it isn't, what