Sql Server Restore Script

來源:互聯網
上載者:User

標籤:blog   http   io   ar   os   sp   for   strong   div   

The backup set holds a backup of a database other than the existing ‘xxdb‘ database.時間 2014-04-25 11:03:39 CSDN部落格 相似文章 ( 0) 原文  http://blog.csdn.net/wzhiu/article/details/24459511  

One:

he backup set holds a backup of a database other than the existing ‘xxdb’ database

Sometime when you try to restore the backup file on an existing database and receive the following error message:

Restore failed for Server ‘ SQL Server name ‘. (Microsoft.SqlServer.Smo)
Additional information:
System.Data.SqlClient.SqlError: The backup set holds a backup of a database other than the existing ‘ xxdbe ‘ database. (Microsoft.SqlServer.Smo)

Above error message indicates that you are going to restore a database on another database which are not the same database. For example, you have backup A database and try to restore the backup to B database, the error will occur.

You can use the  overwrite the existing database  option while you’re restoring to solve the problem.

On  Restore Database , select  Options  tab on the left menu. Then, check  Overwrite the existing database  on Restore options.

Now Restore the database. and problem is solved.

You can also delete the database and again restore that.

Two:

Use SQL to solve this issue.

USE master

RESTORE DATABASE ReportServer

FROM DISK = ‘C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\ReportServer.bak‘

WITH MOVE ‘ReportServer_db‘ TO ‘C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\ReportServer.mdf‘ ,

MOVE ‘ReportServer_log‘ TO ‘C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\ReportServer_log.ldf‘ ,

STATS = 10 , REPLACE

GO

Sql Server Restore Script

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.