To find the sets of keys with duplicates,
select <keys>, count(*)
from <tablename>
group by <keys>
having count(*) > 1
You will then want to look at the full rows that have duplicate keys to decide how to handle them (perhaps by deleting some of the rows).