Thank you. The explanation, in my words:
The login designated as database owner is implicitly mapped to the special user dbo and cannot be mapped to different user. So, if a Login is the designated owner of a Database, then the mapped user for that Database is unconditionally [dbo] and cannot be changed. Furthermore, that Login cannot be added as a User to the database.
Solution: change the database owner
Main Topics
Browse All Topics





by: aaronakinPosted on 2008-06-08 at 12:41:42ID: 21739321
You need to change the dbo user to another login first...usually sa.
USE MAX_Struct
EXEC sp_changedbowner 'sa'
Then you can remap the OAK\dennis login to another db user.