Jeg ville VÆLGE DISTINCT rækkerne og smide dem ind i en midlertidig tabel, derefter droppe kildetabellen og kopiere dataene tilbage fra temp.EDIT: nu med kodestykke!
INSERT INTO TABLE_2
SELECT DISTINCT * FROM TABLE_1
GO
DELETE FROM TABLE_1
GO
INSERT INTO TABLE_1
SELECT * FROM TABLE_2
GO