SQL Server database cannot rename error 5030

Source: Internet
Author: User

The use of MSSQL when learning ASP. ' Often this error, the database can not duplicate name 5030 error, in fact, the simple reason is that there is an application is occupying this connection, using such a line of command can query out the occupied connection

 Use Master    Select  from  where dbid=db_id('odatabasename'

The result of the execution is a number of numbers such as the total, the use master Kill 23 90 can be, in the case of a foreign user access to the database execution


EXEC sp_dboption ' olddbname ', ' Single User ', ' TRUE '
EXEC sp_dboption ' newdbname ', ' Single User ', ' FALSE '

These two statements mean that the database is converted to single-user mode and non-single-user mode, which prevents other users from manipulating the database when renaming the database, causing deadlocks.

SQL Server database cannot rename error 5030

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.