SQL SERVER Properties owner is not available for database XXX. The object may not have this property, or it may be insufficient access to retrieve it.

Source: Internet
Author: User

A case was encountered today: The following error message appears when you right-click a property of a database:

Property owner is not available for database XXX, the object may not have this property, or it may be insufficient access to retrieve.

The owner of the database was found to be null when the script was used to view the owner. The reason is because the owner of the database is a system administrator's account, because the colleague left, the system administrator took the account cleared, so the above error. The following script is queried to find that the owner is a null value.

SELECT D.name,
Owner_sid,
L.name
 from sys.databases D
 Left JOIN  on l.sid = D.owner_sid
WHERE d.name=' DataBaseName ';

You only need to change the owner of the database to the account of SA or other sysadmin role.

 Use DataBaseName;
GO
EXEC ' sa ';
GO

SQL SERVER Properties owner is not available for database XXX. The object may not have this property, or it may be insufficient access to retrieve it.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.