All Tags »
SQL Server 2008... »
tips and tricks »
T-SQL »
performance (RSS)
Sorry, but there are no more tags available to filter with.
-
A few days ago I was asked a question how to remove duplicates from a table. As usually in such cases, the duplicate values were related only to several columns, not all of them. So classical approach, to copy distinct data into temp table, truncate the table with duplicates and then copy the data back wouldn’t work. In such cases I find one of ...