Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using SQL Server 2008 Express

I created a new database then restored a copy of a database over it. A sql user exists in the database backup so has been added to the database through the restore operation. When I try and delete this user I get:

"The database principal owns a schema in the database, and cannot be dropped"

This is confusing. The user doesn't exist yet, but it owns a schema? Why can't it be deleted?

Next if I add a user with that user name and a valid password, then the user can't even connect to the database.

This has always bugged me, what is the reason and how do I fix this?

share|improve this question

2 Answers

up vote 5 down vote accepted

It's probably because you restored the database and the user was already in that database at the time of backup. Repair the user-login association with

sp_change_users_login 'Auto_Fix', 'username'

http://msdn.microsoft.com/en-us/library/ms174378.aspx

also see

http://www.fileformat.info/tip/microsoft/sql_orphan_user.htm

share|improve this answer

sp_change_users_login didn't work for me.

But this did:

SELECT s.name
FROM sys.schemas s
WHERE s.principal_id = USER_ID('user')

Then, take each record listed above and replace SCHEMA_NAME with the schema returned with the following statement

ALTER AUTHORIZATION ON SCHEMA::SCHEMA_NAME TO dbo

After I did that for each record, I was able to delete the account.

share|improve this answer
thanks, did work for me too – ch2o Feb 4 at 23:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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