Just take Brets sql
select <keys>, count(*)
from <tablename>
group by <keys>
having count(*) > 1
and change the word <keys> into your list of column in the unique index
and change the word <tablename> for the table you're creating the index on.
Run the SQL and you'll see the list of rows which fail due to a unique index violation.