Sql Server 恢复备份问题:
   问题描述:
   用Sql Server2005恢复数据库备份文件Mydb.BAK,报错如下:
      
  
  直接执行SQL 反回的错误
       消息 3154,级别 16,状态 4,第 1 行
       备份集中的数据库备份与现有的 'test1' 数据库不同。
       消息 3013,级别 16,状态 1,第 1 行
        RESTORE DATABASE 正在异常终止。






      使用命令:restore database [name] from disk=''
  解决方法:
     1 新建一个同名数据库:Mydb.mdb
     2 执行以下语句:
        restore database [name] from disk=''  with replace
   路曼曼其修远兮,吾将上下而求索