Property Owner is not available for Database

  • SQL 2005

    Im getting the error below on 5 out of 8 of my clients databases when trying to access the properties, I have no problem access the properties of the other 3 databases;

    "Property Owner is not available for Database '[AdhocReportsDB]'. This property may not exist for this object, or may not be retrievable due to insufficient access rights".

    I logged in as sa to see if i could check the properties but still the same error.

    Anyone seen this or can help?

    Thanks

  • Set the database owner using sp_changedbowner

    For example:

    use DatabaseName

    go

    sp_changedbowner 'sa'

    go

    After that you will be able to access the database properties.

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply