Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Bug #: 397455 (SQLBUDT)

Symptoms

When you run a statement or a module that includes the EXECUTE AS clause in Microsoft SQL Server 2005, you may receive the following error message:

Cannot execute as the database principal because the principal "dbo" does not exist, this type of principal cannot be impersonated, or you do not have permission.

This problem occurs when all the following conditions are true:

  • You back up a database from an instance of SQL Server 2005. Then, you restore the database to an instance of SQL Server 2005 that is installed on another computer.

  • The statement or the module is executed as the dbo (database owner) user.

  • The owner of the database is a domain user or a SQL Server authorization login.

    Notes

    • If a domain user owns the database, the computer on which you restore the database cannot access the domain.

    • If a SQL Server authorization login owns the database, the login does not exist in the new instance of SQL Server 2005.

Cause

This problem occurs because SQL Server 2005 cannot obtain the information about the context when you try to impersonate a database user to run a statement or a module.

SQL Server cannot obtain the information about the context that you are trying to impersonate under the conditions that are listed in the "Symptoms" section. If you impersonate a SQL Server authorization login, SQL Server cannot find a login that matches the security identifier (SID) of the impersonated user. If you impersonate a domain user, the domain controller cannot find the information about the specific user who matches the SID of the impersonated user.

Workaround

To work around this problem, change the database owner to a valid login or domain user. To do this, run the following statements:

USE <DatabaseName>
GO
sp_changedbowner '<NewLogin>'

Note <DatabaseName> represents the name of the database. <NewLogin> represents the name of the login that you want to set.

Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?

Thank you for your feedback!

×