I would try this
http://community.landesk.com/support/docs/DOC-25223
To see just the dupes in sql
SET NOCOUNT ON
DECLARE @Address varchar(255), @Check int
DECLARE change_cursor CURSOR FOR
SELECT Address FROM TCP
GROUP BY Address
HAVING COUNT(Address) > 1