gpt4 book ai didi

sql-server - SQL 服务器 : How to attach/repair a detached/damaged database?

转载 作者:行者123 更新时间:2023-12-04 12:50:47 25 4
gpt4 key购买 nike

数据库服务器崩溃。我能够获取 mdf 和日志文件,并且我正在尝试将其安装到另一台服务器上。我没有备份,因为它是一个开发数据库。

当我尝试附加 mdf 和 ldf 文件时,Sql Server Management Studio 给我这个错误:

    TITLE: Microsoft SQL Server Management Studio
------------------------------

Attach database failed for Server

------------------------------

Could not redo log record (457:14202:19), for transaction ID (0:478674), on page (1:519205), database 'WSS_Content_5555' (database ID 15). Page: LSN = (370:463:113), type = 1. Log: OpCode = 2, context 2, PrevPageLSN: (298:40524:64).
Restore from a backup of the database, or repair the database.
During redoing of a logged operation in database 'WSS_Content_5555', an error occurred at log record ID (457:14202:19).
Typically, the specific failure is previously logged as an error in the Windows Event Log service.
Restore the database from a full backup, or repair the database.
Could not open new database 'WSS_Content_5555'.
CREATE DATABASE is aborted. (Microsoft SQL Server, Error: 3456)

我不知道如何修复数据库。维修前需要贴上吗?在那种情况下,我该如何附加它?

最佳答案

您可以尝试解决方法。简而言之:

  1. 创建一个同名的虚拟数据库(可能需要先删除真实数据库,然后保存原始文件或重命名)。
  2. 使虚拟机脱机(分离并(设置脱机或停止 SQL 服务))。
  3. 删除虚拟文件,然后用真正的数据库文件替换。
  4. 尝试重新附加数据库

编辑

如 OP 评论所述,您还可能需要重建日志(如果您丢失了事务)

  1. ALTER DATABASE [MyDatabase] REBUILD LOG ON (NAME='MyDatabaseLog',FILENAME='D:\Microsoft SQL Server\YourDataPath\Data\Logfile.ldf')

    并将数据库放入多个用户日志中(关闭数据库可能需要您将其置于单机使用模式)

  2. 更改数据库 [nomdb] 设置多用户

有关所有详细信息,您可以引用 Paul Randal Article

(注意在这篇文章中作者使用紧急模式来(尝试)修复事务日志)

我已经成功地使用了它,但根据损坏程度或其他细节,这可能是一项不可能完成的任务。考虑恢复备份。

请注意,这种特技在开发服务器中很好,但您确实需要在生产服务器中计划(和演练)灾难恢复。

关于sql-server - SQL 服务器 : How to attach/repair a detached/damaged database?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38995380/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com