Another link suggests this for SQL-Server (looks like it has the partition by function)
Give it a tryTo remove duplicates, on SQL Server 2005 you can use this query:
WITH Dups
AS
(SELECT *, ROW_NUMBER() OVER(
PARTITION BY col1, col2, col3, col4, col5, col6, col7, col8,
col9, col10
ORDER BY col1) AS seq
FROM Table)
DELETE Dups
WHERE seq > 1;
Bookmarks