I have a database with user 'dbo' that has a login name "domain\xzy". How do I change it from "domain\xzy" to "domain\abc".

link|improve this question

feedback

3 Answers

up vote 26 down vote accepted

I figured it out. Within SQL Management Studio you have to right-click on the database -> Properties -> Files -> Owner field. Change this field to the login name/account that you want associated with the "dbo" username for that database. Please keep in mind that the login name/account you choose must already be setup in the sql server under Security -> Logins

link|improve this answer
1  
I needed to know this, 2 years later -- thank you. – Hogan Apr 15 '10 at 20:30
Thats a great find! +1 – Sprintstar Jul 21 '10 at 15:57
4  
Or make the same change via code: use someDB;go;exec sp_changedbowner 'newOwner' – Ryan Fisher Feb 3 '11 at 0:00
feedback

If you are trying to remap a login to a db user you can use sp_change_user_login

exec sp_change_user_login 'Update_One', 'user', 'login'

link|improve this answer
1  
The sproc appears to be 'sp_change_users_login' (i.e. users). FYI the BOL also states that it's deprecated and ALTER USER should be used instead in the future. – Chris Oldwood Nov 26 '10 at 11:12
feedback

This is a Windows login, not a SQL Server login, so you cannot 'change' the login name since it is linked to the user account in Active Directory.

Create a new Server Login (Windows) mapped to the new windows user (and remove the old one if necessary). Then in login's Security > User Mapping, permission that login to the appropriate database as user 'dbo' (or assign to the db_owner role)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.