如何在SQL SErver2000中恢复Master数据库
如何在SQL SErver2000中恢复Master数据库
--恢复Master
如何在SQL SErver2000中恢复Master数据库--方法1:
重装SQL,但是数据就Over掉了
如何在SQL SErver2000中恢复Master数据库--方法2:
重建Master Rebuildm.exe 用到SQL的安装文件,
如何在SQL SErver2000中恢复Master数据库
    --从安装目录X86\Data中拷取原文件
如何在SQL SErver2000中恢复Master数据库--
重建成功后,不要启动SQL Server,以单用户模式进入SQL 
如何在SQL SErver2000中恢复Master数据库
    --SQLserver的安装目录\bin\sqlservr.exe -m
如何在SQL SErver2000中恢复Master数据库
    --还原数据库备份restore database master from disk='e:\master.bak'
如何在SQL SErver2000中恢复Master数据库--
恢复Master
如何在SQL SErver2000中恢复Master数据库--
启动SQL SERVER
如何在SQL SErver2000中恢复Master数据库

如何在SQL SErver2000中恢复Master数据库sp_addumpdevice  
'disk',Mas, 'E:\Master.bak'
如何在SQL SErver2000中恢复Master数据库
backup database master to mas
如何在SQL SErver2000中恢复Master数据库
restore verifyonly from mas
如何在SQL SErver2000中恢复Master数据库
--Cut the Master db
如何在SQL SErver2000中恢复Master数据库--
rebuildm.exe
如何在SQL SErver2000中恢复Master数据库--
Sqlservr.exe -m
如何在SQL SErver2000中恢复Master数据库
restore database master from disk='e:\master.bak'
如何在SQL SErver2000中恢复Master数据库

如果是Model 数据库损坏,具体过程为:
先重建Master数据库,再恢复Model数据库的备份;

MSDB的损坏不影响SQL Server的正常运行, 备份还原和用户数据库相同
TempDB:SQL Server每次启动的时候,都会使用Model数据库重建,不用备份

相关文章:

  • 2022-12-23
  • 2021-12-16
  • 2021-12-15
  • 2021-11-15
  • 2021-05-18
  • 2021-12-05
  • 2022-12-23
  • 2022-01-08
猜你喜欢
  • 2021-11-23
  • 2021-07-24
  • 2021-10-25
  • 2021-09-23
  • 2022-01-09
  • 2021-12-05
相关资源
相似解决方案