摘要: --常规SQL SERVER数据库置疑后恢复步骤 --1. 恢复步骤: --a.将smlog_log.ldf文件备份到其它目录下; --b.将源目录下的smlog_log.ldf文件改名为smlog_log_bak.ldf; --c.执行以下语句修改数据库的状态: use Master go update sysdatabases set status=32768 where name='数据库名称' --修改状态,設為緊急狀態 go shutdown with nowait --停止数据库服务器 go --d.退出SQL并在(COMMA... 阅读全文
posted @ 2011-09-06 15:22 许明吉博客 阅读(380) 评论(0) 推荐(0) 编辑