Thats good...so are you able to access the database then? That error shows that the database owner login has been already associated to some other login in the server.
You can rectify this by changing the database owner to some other login - Can be done using the below query:
USE dbname
go
EXEC sp_changedbowner 'newloginname'