zoukankan      html  css  js  c++  java
  • [TroubleShootin]The backup set holds a backup of a database other than the existing 'xxdb' database.

    

    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.

    USEmaster

    RESTOREDATABASEReportServer

    FROMDISK='C:Program FilesMicrosoft SQL ServerMSSQL11.MSSQLSERVERMSSQLBackupReportServer.bak'

    WITHMOVE'ReportServer_db'TO'C:Program FilesMicrosoft SQL ServerMSSQL11.MSSQLSERVERMSSQLBackupReportServer.mdf',

    MOVE'ReportServer_log'TO'C:Program FilesMicrosoft SQL ServerMSSQL11.MSSQLSERVERMSSQLBackupReportServer_log.ldf',

    STATS= 10,REPLACE

    GO

  • 相关阅读:
    Python中webbrowser的用法
    python爬虫笔记
    PHP yii2.0框架利用mpdf导出pdf
    PyQt5中QTableWidget设置列宽大小的几种方式
    看linux正在运行的服务用哪个命令?
    查看SELinux状态
    查看SMB服务器用户
    centOS7 下安装smb服务器
    (samba启动失败)smb.service: main process exited, code=exited, status=1/FAILURE
    Linux 操作日志
  • 原文地址:https://www.cnblogs.com/bhlsheji/p/4257149.html
Copyright © 2011-2022 走看看