There's a good article on removing duplicates on the Microsoft Support site. It's pretty conservative - they have you do everything in separate steps - but it should work well against large tables.
I've used self-joins to do this in the past, although it could probably be prettied up with a HAVING clause:
delete from dupes
from MyTable dupes, MyTable fullTable
where dupes.dupField = fullTable.dupField
and dupes.secondDupField = fullTable.secondDupField
and dupes.uniqueField > fullTable.uniqueField
