SQL2000 Backup database is restored to sql2005, select database diagram prompt: This database does not have a valid owner, so the database diagram support object resolution cannot be installed

Source: Internet
Author: User
Tags continue valid backup
sql2005| Backup | objects | resolve | data | Database sql2000 backup DATABASE after restoring to sql2005, select database diagram prompt: This database does not have a valid owner, so the database diagram support object cannot be installed. To continue, first set the database owner to a valid login using the file page of the Database Properties dialog box or the ALTER AUTHORIZATION statement, and then add the database diagram support object.

The workaround is as follows:
1, set the compatibility level of 90 (2005 for the)
Use [master]
Go
EXEC dbo.sp_dbcmptlevel @dbname = ' database name ', @new_cmptlevel =90
Go

Or choose the database you restored, right-click, select attribute-> option-> compatibility level, choose sqlserver2005 (90) and then OK,

At this point, you will be prompted to expand the database Diagram node under the database, "This database is missing one or more supporting objects that are required to use the database diagram, create", and select Yes.

2, through the above methods of operation, if the problem persists, in the following ways to continue

Select your database and select "Security"-> "user", select dbo, open the Properties page, if the login name is empty, create a new query, and then

Use [your database name]
EXEC sp_changedbowner ' sa '

After successful execution, you will then select the Database Diagram node and prompt "This database is missing one or more supporting objects required to use the database diagram, create", and select Yes. You can see the original diagram.



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.